Mercurial > emacs
annotate src/keyboard.c @ 10746:ea87e4d9c8ea
(input_poll_signal): Add ignored argument.
(interrupt_signal): Likewise.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 14 Feb 1995 14:25:36 +0000 |
| parents | 358030fd130c |
| children | 5bfee5ff5d18 |
| rev | line source |
|---|---|
| 518 | 1 /* Keyboard and mouse input; editor command loop. |
|
10533
52b954844444
(read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
2 Copyright (C) 1985,86,87,88,89,93,94,95 Free Software Foundation, Inc. |
| 518 | 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 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4600
diff
changeset
|
23 #include <config.h> |
| 518 | 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 | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
43 #ifdef MSDOS |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
44 #include "msdos.h" |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
45 #include <time.h> |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
46 #else /* not MSDOS */ |
| 562 | 47 #ifndef VMS |
| 48 #include <sys/ioctl.h> | |
| 49 #endif | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
50 #endif /* not MSDOS */ |
| 562 | 51 |
| 52 #include "syssignal.h" | |
|
1046
d4b1e5db2b2a
* keyboard.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1008
diff
changeset
|
53 #include "systty.h" |
| 518 | 54 |
|
7727
741ba17eeb20
[HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents:
7650
diff
changeset
|
55 /* This is to get the definitions of the XK_ symbols. */ |
|
741ba17eeb20
[HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents:
7650
diff
changeset
|
56 #ifdef HAVE_X_WINDOWS |
|
741ba17eeb20
[HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents:
7650
diff
changeset
|
57 #include "xterm.h" |
|
741ba17eeb20
[HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents:
7650
diff
changeset
|
58 #endif |
|
741ba17eeb20
[HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents:
7650
diff
changeset
|
59 |
|
7807
cd93cee36101
(modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents:
7787
diff
changeset
|
60 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */ |
|
cd93cee36101
(modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents:
7787
diff
changeset
|
61 #include "systime.h" |
|
cd93cee36101
(modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents:
7787
diff
changeset
|
62 |
| 518 | 63 extern int errno; |
| 64 | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
65 /* 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
|
66 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
67 /* 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
|
68 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
|
69 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
70 /* 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
|
71 during the current critical section. */ |
|
2481
a7a0f89c1f64
* keyboard.c (interrupt_input_blocked, interrupt_input_pending):
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
72 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
|
73 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
74 |
|
9652
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
75 /* File descriptor to use for input. */ |
|
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
76 extern int input_fd; |
| 518 | 77 |
|
9830
8d151c06dc8b
Move decl of input_fd outside of #ifdef HAVE_X_WINDOWS.
Roland McGrath <roland@gnu.org>
parents:
9800
diff
changeset
|
78 #ifdef HAVE_X_WINDOWS |
| 518 | 79 /* Make all keyboard buffers much bigger when using X windows. */ |
| 80 #define KBD_BUFFER_SIZE 4096 | |
| 81 #else /* No X-windows, character input */ | |
| 82 #define KBD_BUFFER_SIZE 256 | |
| 83 #endif /* No X-windows */ | |
| 84 | |
| 85 /* Following definition copied from eval.c */ | |
| 86 | |
| 87 struct backtrace | |
| 88 { | |
| 89 struct backtrace *next; | |
| 90 Lisp_Object *function; | |
| 91 Lisp_Object *args; /* Points to vector of args. */ | |
| 92 int nargs; /* length of vector. If nargs is UNEVALLED, | |
| 93 args points to slot holding list of | |
| 94 unevalled args */ | |
| 95 char evalargs; | |
| 96 }; | |
| 97 | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
98 #ifdef MULTI_PERDISPLAY |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
99 PERDISPLAY *current_perdisplay; |
|
10655
a8569200e517
[MULTI_PERDISPLAY] (all_perdisplays): New var.
Karl Heuer <kwzh@gnu.org>
parents:
10654
diff
changeset
|
100 PERDISPLAY *all_perdisplays; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
101 #else |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
102 PERDISPLAY the_only_perdisplay; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
103 #endif |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
104 |
| 518 | 105 /* Non-nil disable property on a command means |
| 106 do not execute it; call disabled-command-hook's value instead. */ | |
|
4094
1dae74fd93d2
(Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4088
diff
changeset
|
107 Lisp_Object Qdisabled, Qdisabled_command_hook; |
| 518 | 108 |
| 109 #define NUM_RECENT_KEYS (100) | |
| 110 int recent_keys_index; /* Index for storing next element into recent_keys */ | |
| 111 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
|
112 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */ |
| 518 | 113 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
114 /* 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
|
115 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
|
116 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
|
117 actually mean something. |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
118 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
|
119 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
|
120 int this_command_key_count; |
| 518 | 121 |
| 122 extern int minbuf_level; | |
| 123 | |
| 124 extern struct backtrace *backtrace_list; | |
| 125 | |
| 126 /* Nonzero means do menu prompting. */ | |
| 127 static int menu_prompting; | |
| 128 | |
| 129 /* Character to see next line of menu prompt. */ | |
| 130 static Lisp_Object menu_prompt_more_char; | |
| 131 | |
| 132 /* For longjmp to where kbd input is being done. */ | |
| 133 static jmp_buf getcjmp; | |
| 134 | |
| 135 /* True while doing kbd input. */ | |
| 136 int waiting_for_input; | |
| 137 | |
| 138 /* True while displaying for echoing. Delays C-g throwing. */ | |
| 139 static int echoing; | |
| 140 | |
|
9396
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
141 /* Nonzero means disregard local maps for the menu bar. */ |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
142 static int inhibit_local_menu_bar_menus; |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
143 |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
144 /* Nonzero means C-g should cause immediate error-signal. */ |
| 518 | 145 int immediate_quit; |
| 146 | |
| 147 /* Character to recognize as the help char. */ | |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
148 Lisp_Object Vhelp_char; |
| 518 | 149 |
| 150 /* Form to execute when help char is typed. */ | |
| 151 Lisp_Object Vhelp_form; | |
| 152 | |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
153 /* Command to run when the help character follows a prefix key. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
154 Lisp_Object Vprefix_help_command; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
155 |
|
4115
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
156 /* List of items that should move to the end of the menu bar. */ |
|
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
157 Lisp_Object Vmenu_bar_final_items; |
|
4088
bea0be5ab35e
(Vhelp_menu_bar_map): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4065
diff
changeset
|
158 |
| 518 | 159 /* Character that causes a quit. Normally C-g. |
| 160 | |
| 161 If we are running on an ordinary terminal, this must be an ordinary | |
| 162 ASCII char, since we want to make it our interrupt character. | |
| 163 | |
| 164 If we are not running on an ordinary terminal, it still needs to be | |
| 165 an ordinary ASCII char. This character needs to be recognized in | |
| 166 the input interrupt handler. At this point, the keystroke is | |
| 167 represented as a struct input_event, while the desired quit | |
| 168 character is specified as a lispy event. The mapping from struct | |
| 169 input_events to lispy events cannot run in an interrupt handler, | |
| 170 and the reverse mapping is difficult for anything but ASCII | |
| 171 keystrokes. | |
| 172 | |
| 173 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an | |
| 174 ASCII character. */ | |
| 175 int quit_char; | |
| 176 | |
| 177 extern Lisp_Object current_global_map; | |
| 178 extern int minibuf_level; | |
| 179 | |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
180 /* If non-nil, this is a map that overrides all other local maps. */ |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
181 Lisp_Object Voverriding_local_map; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
182 |
|
9607
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
183 /* If non-nil, Voverriding_local_map applies to the menu bar. */ |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
184 Lisp_Object Voverriding_local_map_menu_flag; |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
185 |
| 518 | 186 /* Current depth in recursive edits. */ |
| 187 int command_loop_level; | |
| 188 | |
| 189 /* Total number of times command_loop has read a key sequence. */ | |
| 190 int num_input_keys; | |
| 191 | |
| 192 /* Last input character read as a command. */ | |
| 193 Lisp_Object last_command_char; | |
| 194 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
195 /* 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
|
196 reached by the mouse. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
197 Lisp_Object last_nonmenu_event; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
198 |
| 518 | 199 /* Last input character read for any purpose. */ |
| 200 Lisp_Object last_input_char; | |
| 201 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
202 /* If not Qnil, a list of objects to be read as subsequent command input. */ |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
203 Lisp_Object Vunread_command_events; |
| 518 | 204 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
205 /* 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
|
206 int unread_command_char; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
207 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
208 /* 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
|
209 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
|
210 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
|
211 |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
212 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
|
213 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
|
214 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
|
215 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
|
216 |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
217 /* 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
|
218 int extra_keyboard_modifiers; |
|
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
219 |
| 518 | 220 /* Char to use as prefix when a meta character is typed in. |
| 221 This is bound on entry to minibuffer in case ESC is changed there. */ | |
| 222 | |
| 223 Lisp_Object meta_prefix_char; | |
| 224 | |
| 225 /* Last size recorded for a current buffer which is not a minibuffer. */ | |
| 226 static int last_non_minibuf_size; | |
| 227 | |
|
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
228 /* Number of idle seconds before an auto-save and garbage collection. */ |
| 518 | 229 static Lisp_Object Vauto_save_timeout; |
| 230 | |
| 231 /* Total number of times read_char has returned. */ | |
| 232 int num_input_chars; | |
| 233 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
234 /* 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
|
235 int num_nonmacro_input_chars; |
|
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
236 |
| 518 | 237 /* Auto-save automatically when this many characters have been typed |
| 238 since the last time. */ | |
| 239 | |
| 240 static int auto_save_interval; | |
| 241 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
242 /* Value of num_nonmacro_input_chars as of last auto save. */ |
| 518 | 243 |
| 244 int last_auto_save; | |
| 245 | |
| 246 /* Last command executed by the editor command loop, not counting | |
| 247 commands that set the prefix argument. */ | |
| 248 | |
| 249 Lisp_Object last_command; | |
| 250 | |
| 251 /* The command being executed by the command loop. | |
| 252 Commands may set this, and the value set will be copied into last_command | |
| 253 instead of the actual command. */ | |
| 254 Lisp_Object this_command; | |
| 255 | |
|
6178
ad3864a4e0bc
(command_loop_1): Set last_point_position to the value of point.
Karl Heuer <kwzh@gnu.org>
parents:
6159
diff
changeset
|
256 /* The value of point when the last command was executed. */ |
|
ad3864a4e0bc
(command_loop_1): Set last_point_position to the value of point.
Karl Heuer <kwzh@gnu.org>
parents:
6159
diff
changeset
|
257 int last_point_position; |
|
ad3864a4e0bc
(command_loop_1): Set last_point_position to the value of point.
Karl Heuer <kwzh@gnu.org>
parents:
6159
diff
changeset
|
258 |
|
7345
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
259 /* The buffer that was current when the last command was started. */ |
|
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
260 Lisp_Object last_point_position_buffer; |
|
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
261 |
| 708 | 262 /* The timestamp of the last input event we received from the X server. |
| 263 X Windows wants this for selection ownership. */ | |
| 518 | 264 unsigned long last_event_timestamp; |
| 265 | |
| 266 Lisp_Object Qself_insert_command; | |
| 267 Lisp_Object Qforward_char; | |
| 268 Lisp_Object Qbackward_char; | |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
269 Lisp_Object Qundefined; |
| 518 | 270 |
| 271 /* read_key_sequence stores here the command definition of the | |
| 272 key sequence that it reads. */ | |
| 273 Lisp_Object read_key_sequence_cmd; | |
| 274 | |
| 275 /* Form to evaluate (if non-nil) when Emacs is started. */ | |
| 276 Lisp_Object Vtop_level; | |
| 277 | |
| 278 /* User-supplied string to translate input characters through. */ | |
| 279 Lisp_Object Vkeyboard_translate_table; | |
| 280 | |
| 281 /* Keymap mapping ASCII function key sequences onto their preferred forms. */ | |
| 282 extern Lisp_Object Vfunction_key_map; | |
| 283 | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
284 /* Keymap mapping ASCII function key sequences onto their preferred forms. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
285 Lisp_Object Vkey_translation_map; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
286 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
287 /* 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
|
288 Lisp_Object Vdeactivate_mark; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
289 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
290 /* 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
|
291 |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
292 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
|
293 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
|
294 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
295 /* 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
|
296 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
|
297 Lisp_Object Vpre_command_hook, Vpost_command_hook; |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
298 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
299 |
|
8302
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
300 /* List of deferred actions to be performed at a later time. |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
301 The precise format isn't relevant here; we just check whether it is nil. */ |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
302 Lisp_Object Vdeferred_action_list; |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
303 |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
304 /* Function to call to handle deferred actions, when there are any. */ |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
305 Lisp_Object Vdeferred_action_function; |
|
10070
def41008c136
(command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents:
10060
diff
changeset
|
306 Lisp_Object Qdeferred_action_function; |
|
8302
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
307 |
| 518 | 308 /* File in which we write all commands we read. */ |
| 309 FILE *dribble; | |
| 310 | |
| 311 /* Nonzero if input is available. */ | |
| 312 int input_pending; | |
| 313 | |
|
2690
5275561e6b0a
(read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents:
2651
diff
changeset
|
314 /* 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
|
315 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
|
316 |
| 518 | 317 int meta_key; |
| 318 | |
| 319 extern char *pending_malloc_warning; | |
| 320 | |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
321 #ifdef HAVE_MOUSE |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
322 /* If this flag is a frame, we check mouse_moved to see when the |
|
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
323 mouse moves, and motion events will appear in the input stream. |
|
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
324 Otherwise, mouse motion is ignored. */ |
|
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
325 static Lisp_Object do_mouse_tracking; |
| 518 | 326 |
| 327 /* The window system handling code should set this if the mouse has | |
| 328 moved since the last call to the mouse_position_hook. Calling that | |
| 329 hook should clear this. Code assumes that if this is set, it can | |
| 330 call mouse_position_hook to get the promised position, so don't set | |
| 331 it unless you're prepared to substantiate the claim! */ | |
| 332 int mouse_moved; | |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
333 #endif /* HAVE_MOUSE. */ |
| 518 | 334 |
| 335 /* Symbols to head events. */ | |
| 336 Lisp_Object Qmouse_movement; | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
337 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
|
338 Lisp_Object Qswitch_frame; |
|
9215
fa3883c219ea
(head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents:
9124
diff
changeset
|
339 Lisp_Object Qdelete_frame; |
|
9729
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
340 Lisp_Object Qiconify_frame; |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
341 Lisp_Object Qmake_frame_visible; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
342 |
| 518 | 343 /* Symbols to denote kinds of events. */ |
| 344 Lisp_Object Qfunction_key; | |
| 345 Lisp_Object Qmouse_click; | |
| 346 /* Lisp_Object Qmouse_movement; - also an event header */ | |
| 347 | |
| 348 /* Properties of event headers. */ | |
| 349 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
|
350 Lisp_Object Qevent_symbol_elements; |
| 518 | 351 |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
352 Lisp_Object Qmenu_enable; |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
353 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
354 /* 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
|
355 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
|
356 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
|
357 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
|
358 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
|
359 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
|
360 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
361 /* 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
|
362 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
|
363 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
|
364 apply_modifiers. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
365 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
|
366 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
367 /* Symbols to use for parts of windows. */ |
| 518 | 368 Lisp_Object Qmode_line; |
| 732 | 369 Lisp_Object Qvertical_line; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
370 Lisp_Object Qvertical_scroll_bar; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
371 Lisp_Object Qmenu_bar; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
372 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
373 extern Lisp_Object Qmenu_enable; |
| 518 | 374 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
375 Lisp_Object recursive_edit_unwind (), command_loop (); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
376 Lisp_Object Fthis_command_keys (); |
|
4773
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
377 Lisp_Object Qextended_command_history; |
| 518 | 378 |
|
7487
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
379 Lisp_Object Qpolling_period; |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
380 |
| 648 | 381 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt |
| 382 happens. */ | |
| 383 EMACS_TIME *input_available_clear_time; | |
| 518 | 384 |
| 385 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode. | |
| 386 Default is 1 if INTERRUPT_INPUT is defined. */ | |
| 387 int interrupt_input; | |
| 388 | |
| 389 /* Nonzero while interrupts are temporarily deferred during redisplay. */ | |
| 390 int interrupts_deferred; | |
| 391 | |
| 392 /* nonzero means use ^S/^Q for flow control. */ | |
| 393 int flow_control; | |
| 394 | |
| 395 /* Allow m- file to inhibit use of FIONREAD. */ | |
| 396 #ifdef BROKEN_FIONREAD | |
| 397 #undef FIONREAD | |
| 398 #endif | |
| 399 | |
| 400 /* We are unable to use interrupts if FIONREAD is not available, | |
| 401 so flush SIGIO so we won't try. */ | |
| 402 #ifndef FIONREAD | |
| 403 #ifdef SIGIO | |
| 404 #undef SIGIO | |
| 405 #endif | |
| 406 #endif | |
| 407 | |
|
4471
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
408 /* If we support X Windows, turn on the code to poll periodically |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
409 to detect C-g. It isn't actually used when doing interrupt input. */ |
| 518 | 410 #ifdef HAVE_X_WINDOWS |
| 411 #define POLL_FOR_INPUT | |
| 412 #endif | |
| 413 | |
| 414 /* Global variable declarations. */ | |
| 415 | |
| 416 /* Function for init_keyboard to call with no args (if nonzero). */ | |
| 417 void (*keyboard_init_hook) (); | |
| 418 | |
| 419 static int read_avail_input (); | |
| 420 static void get_input_pending (); | |
|
4282
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
421 static int readable_events (); |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
422 static Lisp_Object read_char_x_menu_prompt (); |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
423 static Lisp_Object read_char_minibuf_menu_prompt (); |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
424 static Lisp_Object make_lispy_event (); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
425 static Lisp_Object make_lispy_movement (); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
426 static Lisp_Object modify_event_symbol (); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
427 static Lisp_Object make_lispy_switch_frame (); |
| 518 | 428 |
| 429 /* > 0 if we are to echo keystrokes. */ | |
| 430 static int echo_keystrokes; | |
| 431 | |
|
6101
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
432 /* Nonzero means don't try to suspend even if the operating system seems |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
433 to support it. */ |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
434 static int cannot_suspend; |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
435 |
| 518 | 436 #define min(a,b) ((a)<(b)?(a):(b)) |
| 437 #define max(a,b) ((a)>(b)?(a):(b)) | |
| 438 | |
| 439 /* Install the string STR as the beginning of the string of echoing, | |
| 440 so that it serves as a prompt for the next character. | |
| 441 Also start echoing. */ | |
| 442 | |
| 443 echo_prompt (str) | |
| 444 char *str; | |
| 445 { | |
| 446 int len = strlen (str); | |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
447 |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
448 if (len > ECHOBUFSIZE - 4) |
|
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
449 len = ECHOBUFSIZE - 4; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
450 bcopy (str, current_perdisplay->echobuf, len); |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
451 current_perdisplay->echoptr = current_perdisplay->echobuf + len; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
452 *current_perdisplay->echoptr = '\0'; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
453 |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
454 current_perdisplay->echo_after_prompt = len; |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
455 |
| 518 | 456 echo (); |
| 457 } | |
| 458 | |
| 459 /* Add C to the echo string, if echoing is going on. | |
| 460 C can be a character, which is printed prettily ("M-C-x" and all that | |
| 461 jazz), or a symbol, whose name is printed. */ | |
| 462 | |
| 463 echo_char (c) | |
| 464 Lisp_Object c; | |
| 465 { | |
| 466 extern char *push_key_description (); | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
467 |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
468 if (current_perdisplay->immediate_echo) |
| 518 | 469 { |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
470 char *ptr = current_perdisplay->echoptr; |
| 518 | 471 |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
472 if (ptr != current_perdisplay->echobuf) |
| 518 | 473 *ptr++ = ' '; |
| 474 | |
| 475 /* 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
|
476 c = EVENT_HEAD (c); |
| 518 | 477 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
478 if (INTEGERP (c)) |
| 518 | 479 { |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
480 if (ptr - current_perdisplay->echobuf > ECHOBUFSIZE - 6) |
| 518 | 481 return; |
| 482 | |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
483 ptr = push_key_description (XINT (c), ptr); |
| 518 | 484 } |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
485 else if (SYMBOLP (c)) |
| 518 | 486 { |
| 487 struct Lisp_String *name = XSYMBOL (c)->name; | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
488 if (((ptr - current_perdisplay->echobuf) + name->size + 4) |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
489 > ECHOBUFSIZE) |
| 518 | 490 return; |
| 491 bcopy (name->data, ptr, name->size); | |
| 492 ptr += name->size; | |
| 493 } | |
| 494 | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
495 if (current_perdisplay->echoptr == current_perdisplay->echobuf |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
496 && EQ (c, Vhelp_char)) |
| 518 | 497 { |
| 498 strcpy (ptr, " (Type ? for further options)"); | |
| 499 ptr += strlen (ptr); | |
| 500 } | |
| 501 | |
| 502 *ptr = 0; | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
503 current_perdisplay->echoptr = ptr; |
| 518 | 504 |
| 505 echo (); | |
| 506 } | |
| 507 } | |
| 508 | |
| 509 /* Temporarily add a dash to the end of the echo string if it's not | |
| 510 empty, so that it serves as a mini-prompt for the very next character. */ | |
| 511 | |
| 512 echo_dash () | |
| 513 { | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
514 if (!current_perdisplay->immediate_echo |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
515 && current_perdisplay->echoptr == current_perdisplay->echobuf) |
| 518 | 516 return; |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
517 /* Do nothing if we just printed a prompt. */ |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
518 if (current_perdisplay->echo_after_prompt |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
519 == current_perdisplay->echoptr - current_perdisplay->echobuf) |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
520 return; |
|
2505
c0a13d078f68
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents:
2482
diff
changeset
|
521 /* Do nothing if not echoing at all. */ |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
522 if (current_perdisplay->echoptr == 0) |
|
2505
c0a13d078f68
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents:
2482
diff
changeset
|
523 return; |
| 518 | 524 |
| 525 /* Put a dash at the end of the buffer temporarily, | |
| 526 but make it go away when the next character is added. */ | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
527 current_perdisplay->echoptr[0] = '-'; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
528 current_perdisplay->echoptr[1] = 0; |
| 518 | 529 |
| 530 echo (); | |
| 531 } | |
| 532 | |
| 533 /* Display the current echo string, and begin echoing if not already | |
| 534 doing so. */ | |
| 535 | |
| 536 echo () | |
| 537 { | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
538 if (!current_perdisplay->immediate_echo) |
| 518 | 539 { |
| 540 int i; | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
541 current_perdisplay->immediate_echo = 1; |
| 518 | 542 |
| 543 for (i = 0; i < this_command_key_count; i++) | |
|
7502
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
544 { |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
545 Lisp_Object c; |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
546 c = XVECTOR (this_command_keys)->contents[i]; |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
547 if (! (EVENT_HAS_PARAMETERS (c) |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
548 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
549 echo_char (c); |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
550 } |
| 518 | 551 echo_dash (); |
| 552 } | |
| 553 | |
| 554 echoing = 1; | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
555 message1_nolog (current_perdisplay->echobuf); |
| 518 | 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 { | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
566 current_perdisplay->immediate_echo = 0; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
567 current_perdisplay->echoptr = current_perdisplay->echobuf; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
568 current_perdisplay->echo_after_prompt = -1; |
| 518 | 569 } |
| 570 | |
| 571 /* Return the length of the current echo string. */ | |
| 572 | |
| 573 static int | |
| 574 echo_length () | |
| 575 { | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
576 return current_perdisplay->echoptr - current_perdisplay->echobuf; |
| 518 | 577 } |
| 578 | |
| 579 /* Truncate the current echo message to its first LEN chars. | |
| 580 This and echo_char get used by read_key_sequence when the user | |
| 765 | 581 switches frames while entering a key sequence. */ |
| 518 | 582 |
| 583 static void | |
| 584 echo_truncate (len) | |
| 585 int len; | |
| 586 { | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
587 current_perdisplay->echobuf[len] = '\0'; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
588 current_perdisplay->echoptr = current_perdisplay->echobuf + len; |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
589 truncate_echo_area (len); |
| 518 | 590 } |
| 591 | |
| 592 | |
| 593 /* Functions for manipulating this_command_keys. */ | |
| 594 static void | |
| 595 add_command_key (key) | |
| 596 Lisp_Object key; | |
| 597 { | |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
598 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
|
599 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
600 if (this_command_key_count >= size) |
| 518 | 601 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
602 Lisp_Object new_keys; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
603 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
604 new_keys = Fmake_vector (make_number (size * 2), Qnil); |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
605 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
|
606 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
|
607 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
|
608 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
609 this_command_keys = new_keys; |
| 518 | 610 } |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
611 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
612 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key; |
| 518 | 613 } |
| 614 | |
| 615 Lisp_Object | |
| 616 recursive_edit_1 () | |
| 617 { | |
| 618 int count = specpdl_ptr - specpdl; | |
| 619 Lisp_Object val; | |
| 620 | |
| 621 if (command_loop_level > 0) | |
| 622 { | |
| 623 specbind (Qstandard_output, Qt); | |
| 624 specbind (Qstandard_input, Qt); | |
| 625 } | |
| 626 | |
| 627 val = command_loop (); | |
| 628 if (EQ (val, Qt)) | |
| 629 Fsignal (Qquit, Qnil); | |
| 630 | |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
631 return unbind_to (count, Qnil); |
| 518 | 632 } |
| 633 | |
| 634 /* When an auto-save happens, record the "time", and don't do again soon. */ | |
|
7224
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
635 |
| 518 | 636 record_auto_save () |
| 637 { | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
638 last_auto_save = num_nonmacro_input_chars; |
| 518 | 639 } |
|
7224
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
640 |
|
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
641 /* Make an auto save happen as soon as possible at command level. */ |
|
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
642 |
|
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
643 force_auto_save_soon () |
|
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
644 { |
|
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
645 last_auto_save = - auto_save_interval - 1; |
|
7225
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
646 |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
647 record_asynch_buffer_change (); |
|
7224
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
648 } |
| 518 | 649 |
| 650 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | |
| 651 "Invoke the editor command loop recursively.\n\ | |
| 652 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\ | |
| 653 that tells this function to return.\n\ | |
| 654 Alternately, `(throw 'exit t)' makes this function signal an error.\n\ | |
| 655 This function is called by the editor initialization to begin editing.") | |
| 656 () | |
| 657 { | |
| 658 int count = specpdl_ptr - specpdl; | |
| 659 Lisp_Object val; | |
| 660 | |
| 661 command_loop_level++; | |
| 662 update_mode_lines = 1; | |
| 663 | |
| 664 record_unwind_protect (recursive_edit_unwind, | |
| 665 (command_loop_level | |
| 666 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)) | |
| 667 ? Fcurrent_buffer () | |
| 668 : Qnil); | |
| 669 recursive_edit_1 (); | |
| 670 return unbind_to (count, Qnil); | |
| 671 } | |
| 672 | |
| 673 Lisp_Object | |
| 674 recursive_edit_unwind (buffer) | |
| 675 Lisp_Object buffer; | |
| 676 { | |
| 677 if (!NILP (buffer)) | |
| 678 Fset_buffer (buffer); | |
| 679 | |
| 680 command_loop_level--; | |
| 681 update_mode_lines = 1; | |
| 682 return Qnil; | |
| 683 } | |
| 684 | |
| 685 Lisp_Object | |
| 686 cmd_error (data) | |
| 687 Lisp_Object data; | |
| 688 { | |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
689 Vstandard_output = Qt; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
690 Vstandard_input = Qt; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
691 Vexecuting_macro = Qnil; |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
692 if (!current_perdisplay) |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
693 abort (); |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
694 current_perdisplay->Vprefix_arg = Qnil; |
|
10656
eff2463ce489
(cmd_error): Cancel echoing here.
Karl Heuer <kwzh@gnu.org>
parents:
10655
diff
changeset
|
695 cancel_echoing (); |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
696 cmd_error_internal (data, 0); |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
697 |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
698 Vquit_flag = Qnil; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
699 |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
700 Vinhibit_quit = Qnil; |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
701 #ifdef MULTI_PERDISPLAY |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
702 current_perdisplay = 0; |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
703 #endif |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
704 |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
705 return make_number (0); |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
706 } |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
707 |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
708 cmd_error_internal (data, context) |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
709 Lisp_Object data; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
710 char *context; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
711 { |
| 518 | 712 Lisp_Object errmsg, tail, errname, file_error; |
| 713 Lisp_Object stream; | |
| 714 struct gcpro gcpro1; | |
| 715 int i; | |
| 716 | |
| 717 Vquit_flag = Qnil; | |
| 718 Vinhibit_quit = Qt; | |
| 719 echo_area_glyphs = 0; | |
| 720 | |
| 765 | 721 /* If the window system or terminal frame hasn't been initialized |
| 518 | 722 yet, or we're not interactive, it's best to dump this message out |
| 723 to stderr and exit. */ | |
| 765 | 724 if (! FRAME_MESSAGE_BUF (selected_frame) |
| 518 | 725 || noninteractive) |
| 726 stream = Qexternal_debugging_output; | |
| 727 else | |
| 728 { | |
| 729 Fdiscard_input (); | |
| 730 bitch_at_user (); | |
| 731 stream = Qt; | |
| 732 } | |
| 733 | |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
734 if (context != 0) |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
735 write_string_1 (context, -1, stream); |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
736 |
| 518 | 737 errname = Fcar (data); |
| 738 | |
| 739 if (EQ (errname, Qerror)) | |
| 740 { | |
| 741 data = Fcdr (data); | |
| 742 if (!CONSP (data)) data = Qnil; | |
| 743 errmsg = Fcar (data); | |
| 744 file_error = Qnil; | |
| 745 } | |
| 746 else | |
| 747 { | |
| 748 errmsg = Fget (errname, Qerror_message); | |
| 749 file_error = Fmemq (Qfile_error, | |
| 750 Fget (errname, Qerror_conditions)); | |
| 751 } | |
| 752 | |
| 753 /* Print an error message including the data items. | |
| 754 This is done by printing it into a scratch buffer | |
| 755 and then making a copy of the text in the buffer. */ | |
| 756 | |
| 757 if (!CONSP (data)) data = Qnil; | |
| 758 tail = Fcdr (data); | |
| 759 GCPRO1 (tail); | |
| 760 | |
| 761 /* For file-error, make error message by concatenating | |
| 762 all the data items. They are all strings. */ | |
| 763 if (!NILP (file_error) && !NILP (tail)) | |
| 764 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr; | |
| 765 | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
766 if (STRINGP (errmsg)) |
| 518 | 767 Fprinc (errmsg, stream); |
| 768 else | |
| 769 write_string_1 ("peculiar error", -1, stream); | |
| 770 | |
| 771 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++) | |
| 772 { | |
| 773 write_string_1 (i ? ", " : ": ", 2, stream); | |
| 774 if (!NILP (file_error)) | |
| 775 Fprinc (Fcar (tail), stream); | |
| 776 else | |
| 777 Fprin1 (Fcar (tail), stream); | |
| 778 } | |
| 779 UNGCPRO; | |
| 780 | |
| 765 | 781 /* If the window system or terminal frame hasn't been initialized |
| 518 | 782 yet, or we're in -batch mode, this error should cause Emacs to exit. */ |
| 765 | 783 if (! FRAME_MESSAGE_BUF (selected_frame) |
| 518 | 784 || noninteractive) |
| 785 { | |
| 786 Fterpri (stream); | |
| 787 Fkill_emacs (make_number (-1)); | |
| 788 } | |
| 789 } | |
| 790 | |
| 791 Lisp_Object command_loop_1 (); | |
| 792 Lisp_Object command_loop_2 (); | |
| 793 Lisp_Object top_level_1 (); | |
| 794 | |
| 795 /* Entry to editor-command-loop. | |
| 796 This level has the catches for exiting/returning to editor command loop. | |
| 797 It returns nil to exit recursive edit, t to abort it. */ | |
| 798 | |
| 799 Lisp_Object | |
| 800 command_loop () | |
| 801 { | |
| 802 if (command_loop_level > 0 || minibuf_level > 0) | |
| 803 { | |
| 804 return internal_catch (Qexit, command_loop_2, Qnil); | |
| 805 } | |
| 806 else | |
| 807 while (1) | |
| 808 { | |
| 809 internal_catch (Qtop_level, top_level_1, Qnil); | |
| 810 internal_catch (Qtop_level, command_loop_2, Qnil); | |
| 811 | |
| 812 /* End of file in -batch run causes exit here. */ | |
| 813 if (noninteractive) | |
| 814 Fkill_emacs (Qt); | |
| 815 } | |
| 816 } | |
| 817 | |
| 818 /* Here we catch errors in execution of commands within the | |
| 819 editing loop, and reenter the editing loop. | |
| 820 When there is an error, cmd_error runs and returns a non-nil | |
| 821 value to us. A value of nil means that cmd_loop_1 itself | |
| 822 returned due to end of file (or end of kbd macro). */ | |
| 823 | |
| 824 Lisp_Object | |
| 825 command_loop_2 () | |
| 826 { | |
| 827 register Lisp_Object val; | |
| 828 | |
| 829 do | |
| 830 val = internal_condition_case (command_loop_1, Qerror, cmd_error); | |
| 831 while (!NILP (val)); | |
| 832 | |
| 833 return Qnil; | |
| 834 } | |
| 835 | |
| 836 Lisp_Object | |
| 837 top_level_2 () | |
| 838 { | |
| 839 return Feval (Vtop_level); | |
| 840 } | |
| 841 | |
| 842 Lisp_Object | |
| 843 top_level_1 () | |
| 844 { | |
| 845 /* On entry to the outer level, run the startup file */ | |
| 846 if (!NILP (Vtop_level)) | |
| 847 internal_condition_case (top_level_2, Qerror, cmd_error); | |
| 848 else if (!NILP (Vpurify_flag)) | |
| 849 message ("Bare impure Emacs (standard Lisp code not loaded)"); | |
| 850 else | |
| 851 message ("Bare Emacs (standard Lisp code not loaded)"); | |
| 852 return Qnil; | |
| 853 } | |
| 854 | |
| 855 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "", | |
| 856 "Exit all recursive editing levels.") | |
| 857 () | |
| 858 { | |
| 859 Fthrow (Qtop_level, Qnil); | |
| 860 } | |
| 861 | |
| 862 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "", | |
| 863 "Exit from the innermost recursive edit or minibuffer.") | |
| 864 () | |
| 865 { | |
| 866 if (command_loop_level > 0 || minibuf_level > 0) | |
| 867 Fthrow (Qexit, Qnil); | |
| 868 | |
| 869 error ("No recursive edit is in progress"); | |
| 870 } | |
| 871 | |
| 872 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "", | |
| 873 "Abort the command that requested this recursive edit or minibuffer input.") | |
| 874 () | |
| 875 { | |
| 876 if (command_loop_level > 0 || minibuf_level > 0) | |
| 877 Fthrow (Qexit, Qt); | |
| 878 | |
| 879 error ("No recursive edit is in progress"); | |
| 880 } | |
| 881 | |
| 882 /* This is the actual command reading loop, | |
| 883 sans error-handling encapsulation. */ | |
| 884 | |
| 885 Lisp_Object Fcommand_execute (); | |
| 886 static int read_key_sequence (); | |
|
7428
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
887 static void safe_run_hooks (); |
| 518 | 888 |
| 889 Lisp_Object | |
| 890 command_loop_1 () | |
| 891 { | |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
892 Lisp_Object cmd, tem; |
| 518 | 893 int lose; |
| 894 int nonundocount; | |
| 895 Lisp_Object keybuf[30]; | |
| 896 int i; | |
| 897 int no_redisplay; | |
| 898 int no_direct; | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
899 int prev_modiff; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
900 struct buffer *prev_buffer; |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
901 PERDISPLAY *global_perdisplay = current_perdisplay; |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
902 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
903 Vdeactivate_mark = Qnil; |
| 518 | 904 waiting_for_input = 0; |
|
10701
358030fd130c
(command_loop_1): Put back cancel_echoing call, if there's a perdisplay for it
Karl Heuer <kwzh@gnu.org>
parents:
10677
diff
changeset
|
905 if (current_perdisplay) |
|
358030fd130c
(command_loop_1): Put back cancel_echoing call, if there's a perdisplay for it
Karl Heuer <kwzh@gnu.org>
parents:
10677
diff
changeset
|
906 cancel_echoing (); |
| 518 | 907 |
| 908 nonundocount = 0; | |
| 909 no_redisplay = 0; | |
| 910 this_command_key_count = 0; | |
| 911 | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
912 /* Make sure this hook runs after commands that get errors and |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
913 throw to top level. */ |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
914 /* Note that the value cell will never directly contain nil |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
915 if the symbol is a local variable. */ |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
916 if (!NILP (XSYMBOL (Qpost_command_hook)->value) && !NILP (Vrun_hooks)) |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
917 safe_run_hooks (Qpost_command_hook); |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
918 |
|
8302
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
919 if (!NILP (Vdeferred_action_list)) |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
920 call0 (Vdeferred_action_function); |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
921 |
|
6290
6ecf8ea4bd8d
(command_loop_1): On entry, set this_command
Richard M. Stallman <rms@gnu.org>
parents:
6208
diff
changeset
|
922 /* Do this after running Vpost_command_hook, for consistency. */ |
|
6ecf8ea4bd8d
(command_loop_1): On entry, set this_command
Richard M. Stallman <rms@gnu.org>
parents:
6208
diff
changeset
|
923 last_command = this_command; |
|
6ecf8ea4bd8d
(command_loop_1): On entry, set this_command
Richard M. Stallman <rms@gnu.org>
parents:
6208
diff
changeset
|
924 |
| 518 | 925 while (1) |
| 926 { | |
| 927 /* Make sure the current window's buffer is selected. */ | |
| 928 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer) | |
| 929 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer)); | |
| 930 | |
| 931 /* Display any malloc warning that just came out. Use while because | |
| 932 displaying one warning can cause another. */ | |
| 933 | |
| 934 while (pending_malloc_warning) | |
| 935 display_malloc_warning (); | |
| 936 | |
| 937 no_direct = 0; | |
| 938 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
939 Vdeactivate_mark = Qnil; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
940 |
| 518 | 941 /* If minibuffer on and echo area in use, |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3538
diff
changeset
|
942 wait 2 sec and redraw minibuffer. */ |
| 518 | 943 |
| 944 if (minibuf_level && echo_area_glyphs) | |
| 945 { | |
|
1097
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
946 /* 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
|
947 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
|
948 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
|
949 specbind (Qinhibit_quit, Qt); |
| 518 | 950 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
|
951 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
|
952 |
| 518 | 953 echo_area_glyphs = 0; |
| 954 no_direct = 1; | |
| 955 if (!NILP (Vquit_flag)) | |
| 956 { | |
| 957 Vquit_flag = Qnil; | |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
958 Vunread_command_events = Fcons (make_number (quit_char), Qnil); |
| 518 | 959 } |
| 960 } | |
| 961 | |
| 962 #ifdef C_ALLOCA | |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
963 alloca (0); /* Cause a garbage collection now */ |
| 518 | 964 /* Since we can free the most stuff here. */ |
| 965 #endif /* C_ALLOCA */ | |
| 966 | |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
967 #if 0 |
| 765 | 968 #ifdef MULTI_FRAME |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
969 /* 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
|
970 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
|
971 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
|
972 Is this a good idea? */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
973 if (FRAMEP (internal_last_event_frame) |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
974 && 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
|
975 Fselect_frame (internal_last_event_frame, Qnil); |
| 518 | 976 #endif |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
977 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
978 /* 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
|
979 really recompute the menubar from the value. */ |
|
4315
9c6571823ab8
(command_loop_1): Call Qrecompute_lucid_menubar only if defined.
Richard M. Stallman <rms@gnu.org>
parents:
4282
diff
changeset
|
980 if (! NILP (Vlucid_menu_bar_dirty_flag) |
|
9c6571823ab8
(command_loop_1): Call Qrecompute_lucid_menubar only if defined.
Richard M. Stallman <rms@gnu.org>
parents:
4282
diff
changeset
|
981 && !NILP (Ffboundp (Qrecompute_lucid_menubar))) |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
982 call0 (Qrecompute_lucid_menubar); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
983 |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
984 /* Read next key sequence; i gets its length. */ |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
985 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0], Qnil, 0); |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
986 |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
987 ++num_input_keys; |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
988 |
| 518 | 989 /* Now we have read a key sequence of length I, |
| 990 or else I is 0 and we found end of file. */ | |
| 991 | |
| 992 if (i == 0) /* End of file -- happens only in */ | |
| 993 return Qnil; /* a kbd macro, at the end. */ | |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
994 /* -1 means read_key_sequence got a menu that was rejected. |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
995 Just loop around and read another command. */ |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
996 if (i == -1) |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
997 { |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
998 cancel_echoing (); |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
999 this_command_key_count = 0; |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1000 goto finalize; |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
1001 } |
| 518 | 1002 |
| 1003 last_command_char = keybuf[i - 1]; | |
| 1004 | |
|
2406
465732c007f4
(command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents:
2340
diff
changeset
|
1005 /* 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
|
1006 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
|
1007 from that position. */ |
|
465732c007f4
(command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents:
2340
diff
changeset
|
1008 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
|
1009 |
| 518 | 1010 cmd = read_key_sequence_cmd; |
| 1011 if (!NILP (Vexecuting_macro)) | |
| 1012 { | |
| 1013 if (!NILP (Vquit_flag)) | |
| 1014 { | |
| 1015 Vexecuting_macro = Qt; | |
| 1016 QUIT; /* Make some noise. */ | |
| 1017 /* Will return since macro now empty. */ | |
| 1018 } | |
| 1019 } | |
| 1020 | |
| 1021 /* Do redisplay processing after this command except in special | |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
1022 cases identified below that set no_redisplay to 1. |
|
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
1023 (actually, there's currently no way to prevent the redisplay, |
|
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
1024 and no_redisplay is ignored. |
|
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
1025 Perhaps someday we will really implement it. */ |
| 518 | 1026 no_redisplay = 0; |
| 1027 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1028 prev_buffer = current_buffer; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1029 prev_modiff = MODIFF; |
|
6204
ba6268a3dee9
(command_loop_1): Fix misplaced assignment of last_point_position.
Karl Heuer <kwzh@gnu.org>
parents:
6178
diff
changeset
|
1030 last_point_position = PT; |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
1031 XSETBUFFER (last_point_position_buffer, prev_buffer); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1032 |
| 518 | 1033 /* Execute the command. */ |
| 1034 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1035 this_command = cmd; |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1036 /* Note that the value cell will never directly contain nil |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1037 if the symbol is a local variable. */ |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1038 if (!NILP (XSYMBOL (Qpre_command_hook)->value) && !NILP (Vrun_hooks)) |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1039 safe_run_hooks (Qpre_command_hook); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1040 |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1041 if (NILP (this_command)) |
| 518 | 1042 { |
| 1043 /* nil means key is undefined. */ | |
| 1044 bitch_at_user (); | |
| 1045 defining_kbd_macro = 0; | |
| 1046 update_mode_lines = 1; | |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1047 current_perdisplay->Vprefix_arg = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1048 |
| 518 | 1049 } |
| 1050 else | |
| 1051 { | |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1052 if (NILP (current_perdisplay->Vprefix_arg) && ! no_direct) |
| 518 | 1053 { |
| 1054 /* Recognize some common commands in common situations and | |
| 1055 do them directly. */ | |
| 7427 | 1056 if (EQ (this_command, Qforward_char) && PT < ZV) |
| 518 | 1057 { |
| 1058 struct Lisp_Vector *dp | |
| 1059 = window_display_table (XWINDOW (selected_window)); | |
| 7427 | 1060 lose = FETCH_CHAR (PT); |
| 1061 SET_PT (PT + 1); | |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1062 if ((dp |
|
5352
6b91471d9f0f
(command_loop_1): Test of whether disp tab elt
Richard M. Stallman <rms@gnu.org>
parents:
5225
diff
changeset
|
1063 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose)) |
|
8238
3b4a76dcecf6
(command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents:
8169
diff
changeset
|
1064 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1 |
|
3b4a76dcecf6
(command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents:
8169
diff
changeset
|
1065 : (NILP (DISP_CHAR_VECTOR (dp, lose)) |
|
3b4a76dcecf6
(command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents:
8169
diff
changeset
|
1066 && (lose >= 0x20 && lose < 0x7f))) |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1067 : (lose >= 0x20 && lose < 0x7f)) |
| 518 | 1068 && (XFASTINT (XWINDOW (selected_window)->last_modified) |
| 1069 >= MODIFF) | |
| 1070 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
| 7427 | 1071 == PT - 1) |
| 518 | 1072 && !windows_or_buffers_changed |
| 1073 && EQ (current_buffer->selective_display, Qnil) | |
| 1074 && !detect_input_pending () | |
| 1075 && NILP (Vexecuting_macro)) | |
| 1076 no_redisplay = direct_output_forward_char (1); | |
| 1077 goto directly_done; | |
| 1078 } | |
| 7427 | 1079 else if (EQ (this_command, Qbackward_char) && PT > BEGV) |
| 518 | 1080 { |
| 1081 struct Lisp_Vector *dp | |
| 1082 = window_display_table (XWINDOW (selected_window)); | |
| 7427 | 1083 SET_PT (PT - 1); |
| 1084 lose = FETCH_CHAR (PT); | |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1085 if ((dp |
|
7532
996928472982
(command_loop_1): Fix test for valid display table entry,
Richard M. Stallman <rms@gnu.org>
parents:
7502
diff
changeset
|
1086 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose)) |
|
8238
3b4a76dcecf6
(command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents:
8169
diff
changeset
|
1087 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1 |
|
3b4a76dcecf6
(command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents:
8169
diff
changeset
|
1088 : (NILP (DISP_CHAR_VECTOR (dp, lose)) |
|
3b4a76dcecf6
(command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents:
8169
diff
changeset
|
1089 && (lose >= 0x20 && lose < 0x7f))) |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1090 : (lose >= 0x20 && lose < 0x7f)) |
| 518 | 1091 && (XFASTINT (XWINDOW (selected_window)->last_modified) |
| 1092 >= MODIFF) | |
| 1093 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
| 7427 | 1094 == PT + 1) |
| 518 | 1095 && !windows_or_buffers_changed |
| 1096 && EQ (current_buffer->selective_display, Qnil) | |
| 1097 && !detect_input_pending () | |
| 1098 && NILP (Vexecuting_macro)) | |
| 1099 no_redisplay = direct_output_forward_char (-1); | |
| 1100 goto directly_done; | |
| 1101 } | |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1102 else if (EQ (this_command, Qself_insert_command) |
| 518 | 1103 /* Try this optimization only on ascii keystrokes. */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1104 && INTEGERP (last_command_char)) |
| 518 | 1105 { |
| 1106 unsigned char c = XINT (last_command_char); | |
|
8089
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1107 int value; |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1108 |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1109 if (NILP (Vexecuting_macro) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1110 && !EQ (minibuf_window, selected_window)) |
| 518 | 1111 { |
| 1112 if (!nonundocount || nonundocount >= 20) | |
| 1113 { | |
| 1114 Fundo_boundary (); | |
| 1115 nonundocount = 0; | |
| 1116 } | |
| 1117 nonundocount++; | |
| 1118 } | |
|
8089
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1119 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1120 < MODIFF) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1121 || (XFASTINT (XWINDOW (selected_window)->last_point) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1122 != PT) |
|
10309
fe2243b3186b
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10275
diff
changeset
|
1123 || MODIFF <= SAVE_MODIFF |
|
8089
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1124 || windows_or_buffers_changed |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1125 || !EQ (current_buffer->selective_display, Qnil) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1126 || detect_input_pending () |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1127 || !NILP (Vexecuting_macro)); |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1128 value = internal_self_insert (c, 0); |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1129 if (value) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1130 lose = 1; |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1131 if (value == 2) |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1132 nonundocount = 0; |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1133 |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1134 if (!lose |
|
df2986993482
(command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents:
8076
diff
changeset
|
1135 && (PT == ZV || FETCH_CHAR (PT) == '\n')) |
| 518 | 1136 { |
| 1137 struct Lisp_Vector *dp | |
| 1138 = window_display_table (XWINDOW (selected_window)); | |
|
3677
597bde558c91
(read_char): Set c properly as a Lisp int.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1139 int lose = c; |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1140 |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1141 if (dp) |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1142 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
1143 Lisp_Object obj; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
1144 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
1145 obj = DISP_CHAR_VECTOR (dp, lose); |
|
7787
add6e866d6a2
(command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents:
7758
diff
changeset
|
1146 if (NILP (obj)) |
|
7828
cfe470ebd714
(command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents:
7807
diff
changeset
|
1147 { |
|
cfe470ebd714
(command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents:
7807
diff
changeset
|
1148 /* Do it only for char codes |
|
cfe470ebd714
(command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents:
7807
diff
changeset
|
1149 that by default display as themselves. */ |
|
cfe470ebd714
(command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents:
7807
diff
changeset
|
1150 if (lose >= 0x20 && lose <= 0x7e) |
|
cfe470ebd714
(command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents:
7807
diff
changeset
|
1151 no_redisplay = direct_output_for_insert (lose); |
|
cfe470ebd714
(command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents:
7807
diff
changeset
|
1152 } |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1153 else if (VECTORP (obj) |
|
7787
add6e866d6a2
(command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents:
7758
diff
changeset
|
1154 && XVECTOR (obj)->size == 1 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1155 && (obj = XVECTOR (obj)->contents[0], |
|
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1156 INTEGERP (obj)) |
|
7787
add6e866d6a2
(command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents:
7758
diff
changeset
|
1157 /* Insist face not specified in glyph. */ |
|
add6e866d6a2
(command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents:
7758
diff
changeset
|
1158 && (XINT (obj) & ((-1) << 8)) == 0) |
|
7758
ce538d63b1e9
(command_loop_1): Allow direct output for insert
Richard M. Stallman <rms@gnu.org>
parents:
7727
diff
changeset
|
1159 no_redisplay |
|
ce538d63b1e9
(command_loop_1): Allow direct output for insert
Richard M. Stallman <rms@gnu.org>
parents:
7727
diff
changeset
|
1160 = direct_output_for_insert (XINT (obj)); |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1161 } |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1162 else |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1163 { |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1164 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
|
1165 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
|
1166 } |
| 518 | 1167 } |
| 1168 goto directly_done; | |
| 1169 } | |
| 1170 } | |
| 1171 | |
| 1172 /* Here for a command that isn't executed directly */ | |
| 1173 | |
| 1174 nonundocount = 0; | |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1175 if (NILP (current_perdisplay->Vprefix_arg)) |
| 518 | 1176 Fundo_boundary (); |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1177 Fcommand_execute (this_command, Qnil); |
| 518 | 1178 |
| 1179 } | |
| 547 | 1180 directly_done: ; |
| 518 | 1181 |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1182 /* Note that the value cell will never directly contain nil |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1183 if the symbol is a local variable. */ |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1184 if (!NILP (XSYMBOL (Qpost_command_hook)->value) && !NILP (Vrun_hooks)) |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1185 safe_run_hooks (Qpost_command_hook); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1186 |
|
8302
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
1187 if (!NILP (Vdeferred_action_list)) |
|
10070
def41008c136
(command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents:
10060
diff
changeset
|
1188 safe_run_hooks (Qdeferred_action_function); |
|
8302
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
1189 |
| 518 | 1190 /* If there is a prefix argument, |
| 1191 1) We don't want last_command to be ``universal-argument'' | |
| 1192 (that would be dumb), so don't set last_command, | |
| 1193 2) we want to leave echoing on so that the prefix will be | |
| 1194 echoed as part of this key sequence, so don't call | |
| 1195 cancel_echoing, and | |
| 1196 3) we want to leave this_command_key_count non-zero, so that | |
| 1197 read_char will realize that it is re-reading a character, and | |
| 1198 not echo it a second time. */ | |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1199 if (NILP (current_perdisplay->Vprefix_arg)) |
| 518 | 1200 { |
| 1201 last_command = this_command; | |
| 1202 cancel_echoing (); | |
| 1203 this_command_key_count = 0; | |
| 1204 } | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1205 |
|
6208
db4139d43f8a
(command_loop_1, read_key_sequence, Fcommand_execute):
Richard M. Stallman <rms@gnu.org>
parents:
6204
diff
changeset
|
1206 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks)) |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1207 { |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1208 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
|
1209 { |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1210 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
|
1211 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
|
1212 } |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1213 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
|
1214 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
|
1215 } |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1216 |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1217 finalize: |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1218 /* Install chars successfully executed in kbd macro. */ |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1219 |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1220 if (defining_kbd_macro && NILP (current_perdisplay->Vprefix_arg)) |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1221 finalize_kbd_macro_chars (); |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1222 |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1223 #ifdef MULTI_PERDISPLAY |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1224 current_perdisplay = global_perdisplay; |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
1225 #endif |
| 518 | 1226 } |
| 1227 } | |
|
7428
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1228 |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1229 /* If we get an error while running the hook, cause the hook variable |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1230 to be nil. Also inhibit quits, so that C-g won't cause the hook |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1231 to mysteriously evaporate. */ |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1232 static void |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1233 safe_run_hooks (hook) |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1234 Lisp_Object hook; |
|
7428
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1235 { |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
1236 Lisp_Object value; |
|
7428
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1237 int count = specpdl_ptr - specpdl; |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1238 specbind (Qinhibit_quit, Qt); |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1239 |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1240 /* We read and set the variable with functions, |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1241 in case it's buffer-local. */ |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
1242 value = Vcommand_hook_internal = Fsymbol_value (hook); |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
1243 Fset (hook, Qnil); |
|
7428
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1244 call1 (Vrun_hooks, Qcommand_hook_internal); |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
1245 Fset (hook, value); |
|
7428
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1246 |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1247 unbind_to (count, Qnil); |
|
e14086d8ba6f
(safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents:
7427
diff
changeset
|
1248 } |
| 518 | 1249 |
| 1250 /* Number of seconds between polling for input. */ | |
| 1251 int polling_period; | |
| 1252 | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3538
diff
changeset
|
1253 /* Nonzero means polling for input is temporarily suppressed. */ |
| 518 | 1254 int poll_suppress_count; |
| 1255 | |
|
8653
07cc798f5cab
(polling_for_input): Define var unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
8589
diff
changeset
|
1256 /* Nonzero if polling_for_input is actually being used. */ |
|
07cc798f5cab
(polling_for_input): Define var unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
8589
diff
changeset
|
1257 int polling_for_input; |
|
07cc798f5cab
(polling_for_input): Define var unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
8589
diff
changeset
|
1258 |
| 518 | 1259 #ifdef POLL_FOR_INPUT |
| 1260 | |
| 1261 /* Handle an alarm once each second and read pending input | |
| 1262 so as to handle a C-g if it comces in. */ | |
| 1263 | |
| 1264 SIGTYPE | |
|
10746
ea87e4d9c8ea
(input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents:
10701
diff
changeset
|
1265 input_poll_signal (signalnum) /* If we don't have an argument, */ |
|
ea87e4d9c8ea
(input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents:
10701
diff
changeset
|
1266 int signalnum; /* some compilers complain in signal calls. */ |
| 518 | 1267 { |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
1268 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
|
1269 && !waiting_for_input) |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
1270 read_avail_input (0); |
| 518 | 1271 signal (SIGALRM, input_poll_signal); |
| 1272 alarm (polling_period); | |
| 1273 } | |
| 1274 | |
| 1275 #endif | |
| 1276 | |
| 1277 /* Begin signals to poll for input, if they are appropriate. | |
| 1278 This function is called unconditionally from various places. */ | |
| 1279 | |
| 1280 start_polling () | |
| 1281 { | |
| 1282 #ifdef POLL_FOR_INPUT | |
|
4471
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
1283 if (read_socket_hook && !interrupt_input) |
| 518 | 1284 { |
| 1285 poll_suppress_count--; | |
| 1286 if (poll_suppress_count == 0) | |
| 1287 { | |
| 1288 signal (SIGALRM, input_poll_signal); | |
| 1289 polling_for_input = 1; | |
| 1290 alarm (polling_period); | |
| 1291 } | |
| 1292 } | |
| 1293 #endif | |
| 1294 } | |
| 1295 | |
|
8673
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1296 /* Nonzero if we are using polling to handle input asynchronously. */ |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1297 |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1298 int |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1299 input_polling_used () |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1300 { |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1301 #ifdef POLL_FOR_INPUT |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1302 return read_socket_hook && !interrupt_input; |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1303 #else |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1304 return 0; |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1305 #endif |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1306 } |
|
6d1d308ff12d
(input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8653
diff
changeset
|
1307 |
| 518 | 1308 /* Turn off polling. */ |
| 1309 | |
| 1310 stop_polling () | |
| 1311 { | |
| 1312 #ifdef POLL_FOR_INPUT | |
|
4471
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
1313 if (read_socket_hook && !interrupt_input) |
| 518 | 1314 { |
| 1315 if (poll_suppress_count == 0) | |
| 1316 { | |
| 1317 polling_for_input = 0; | |
| 1318 alarm (0); | |
| 1319 } | |
| 1320 poll_suppress_count++; | |
| 1321 } | |
| 1322 #endif | |
| 1323 } | |
|
4475
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1324 |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1325 /* Set the value of poll_suppress_count to COUNT |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1326 and start or stop polling accordingly. */ |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1327 |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1328 void |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1329 set_poll_suppress_count (count) |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1330 int count; |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1331 { |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1332 #ifdef POLL_FOR_INPUT |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1333 if (count == 0 && poll_suppress_count != 0) |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1334 { |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1335 poll_suppress_count = 1; |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1336 start_polling (); |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1337 } |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1338 else if (count != 0 && poll_suppress_count == 0) |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1339 { |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1340 stop_polling (); |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1341 } |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1342 poll_suppress_count = count; |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1343 #endif |
|
e9389ba6e04c
(set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4471
diff
changeset
|
1344 } |
|
7487
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1345 |
|
7502
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1346 /* Bind polling_period to a value at least N. |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1347 But don't decrease it. */ |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1348 |
|
7487
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1349 bind_polling_period (n) |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1350 int n; |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1351 { |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1352 #ifdef POLL_FOR_INPUT |
|
7502
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1353 int new = polling_period; |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1354 |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1355 if (n > new) |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1356 new = n; |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1357 |
|
7487
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1358 stop_polling (); |
|
7502
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1359 specbind (Qpolling_period, make_number (new)); |
|
30ce667c8026
(bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7500
diff
changeset
|
1360 /* Start a new alarm with the new period. */ |
|
7487
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1361 start_polling (); |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1362 #endif |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
1363 } |
| 518 | 1364 |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1365 /* Applying the control modifier to CHARACTER. */ |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1366 int |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1367 make_ctrl_char (c) |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1368 int c; |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1369 { |
|
2954
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1370 /* Save the upper bits here. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1371 int upper = c & ~0177; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1372 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1373 c &= 0177; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1374 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1375 /* Everything in the columns containing the upper-case letters |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1376 denotes a control character. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1377 if (c >= 0100 && c < 0140) |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1378 { |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1379 int oc = c; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1380 c &= ~0140; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1381 /* Set the shift modifier for a control char |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1382 made from a shifted letter. But only for letters! */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1383 if (oc >= 'A' && oc <= 'Z') |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1384 c |= shift_modifier; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1385 } |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1386 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1387 /* The lower-case letters denote control characters too. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1388 else if (c >= 'a' && c <= 'z') |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1389 c &= ~0140; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1390 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1391 /* Include the bits for control and shift |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1392 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
|
1393 else if (c >= ' ') |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1394 c |= ctrl_modifier; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1395 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1396 /* Replace the high bits. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1397 c |= (upper & ~ctrl_modifier); |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1398 |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1399 return c; |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1400 } |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1401 |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1402 |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1403 |
| 518 | 1404 /* Input of single characters from keyboard */ |
| 1405 | |
| 1406 Lisp_Object print_help (); | |
| 1407 static Lisp_Object kbd_buffer_get_event (); | |
|
9689
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1408 static void record_char (); |
| 518 | 1409 |
| 1410 /* read a character from the keyboard; call the redisplay if needed */ | |
| 1411 /* commandflag 0 means do not do auto-saving, but do do redisplay. | |
| 1412 -1 means do not do redisplay, but do do autosaving. | |
| 1413 1 means do both. */ | |
| 1414 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1415 /* 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
|
1416 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
|
1417 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1418 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
|
1419 the first event of a key sequence. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1420 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
1421 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
|
1422 if we used a mouse menu to read the input, or zero otherwise. If |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
1423 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone. |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
1424 |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
1425 Value is t if we showed a menu and the user rejected it. */ |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1426 |
| 518 | 1427 Lisp_Object |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1428 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) |
| 518 | 1429 int commandflag; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1430 int nmaps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1431 Lisp_Object *maps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1432 Lisp_Object prev_event; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1433 int *used_mouse_menu; |
| 518 | 1434 { |
| 1435 register Lisp_Object c; | |
| 1436 int count; | |
| 1437 jmp_buf save_jump; | |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1438 int key_already_recorded = 0; |
|
9689
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1439 Lisp_Object also_record; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1440 also_record = Qnil; |
| 518 | 1441 |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1442 if (CONSP (Vunread_command_events)) |
| 518 | 1443 { |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1444 c = XCONS (Vunread_command_events)->car; |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1445 Vunread_command_events = XCONS (Vunread_command_events)->cdr; |
| 518 | 1446 |
| 1447 if (this_command_key_count == 0) | |
| 1448 goto reread_first; | |
| 1449 else | |
| 1450 goto reread; | |
| 1451 } | |
| 1452 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1453 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
|
1454 { |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
1455 XSETINT (c, unread_command_char); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1456 unread_command_char = -1; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1457 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1458 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
|
1459 goto reread_first; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1460 else |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1461 goto reread; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1462 } |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1463 |
| 518 | 1464 if (!NILP (Vexecuting_macro)) |
| 1465 { | |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1466 #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
|
1467 /* 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
|
1468 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
|
1469 remain unchanged. |
|
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1470 |
|
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1471 Since this event came from a macro, it would be misleading to |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3538
diff
changeset
|
1472 leave internal_last_event_frame set to wherever the last |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1473 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
|
1474 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
|
1475 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
|
1476 selected. */ |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1477 if (!current_perdisplay) |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1478 abort (); |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1479 current_perdisplay->internal_last_event_frame = Qmacro; |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1480 current_perdisplay->Vlast_event_frame = Qmacro; |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1481 #endif |
|
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1482 |
|
2719
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
1483 /* 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
|
1484 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
|
1485 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
|
1486 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
|
1487 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro))) |
| 518 | 1488 { |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
1489 XSETINT (c, -1); |
| 518 | 1490 return c; |
| 1491 } | |
| 1492 | |
| 1493 c = Faref (Vexecuting_macro, make_number (executing_macro_index)); | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1494 if (STRINGP (Vexecuting_macro) |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1495 && (XINT (c) & 0x80)) |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
1496 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80)); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1497 |
| 518 | 1498 executing_macro_index++; |
| 1499 | |
| 1500 goto from_macro; | |
| 1501 } | |
| 1502 | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1503 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
|
1504 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1505 c = unread_switch_frame; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1506 unread_switch_frame = Qnil; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1507 |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1508 /* 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
|
1509 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
|
1510 goto reread_first; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1511 } |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1512 |
|
7246
7f6b5e9ba2c7
(Ftrack_mouse): Call prepare_menu_bars at the start.
Richard M. Stallman <rms@gnu.org>
parents:
7225
diff
changeset
|
1513 /* Don't bother updating menu bars while doing mouse tracking. |
|
7f6b5e9ba2c7
(Ftrack_mouse): Call prepare_menu_bars at the start.
Richard M. Stallman <rms@gnu.org>
parents:
7225
diff
changeset
|
1514 We get events very rapidly then, and the menu bar won't be changing. |
|
7f6b5e9ba2c7
(Ftrack_mouse): Call prepare_menu_bars at the start.
Richard M. Stallman <rms@gnu.org>
parents:
7225
diff
changeset
|
1515 We do update the menu bar once on entry to Ftrack_mouse. */ |
|
7396
3774d6d8a5ee
(read_char): Don't text do_mouse_tracking;
Richard M. Stallman <rms@gnu.org>
parents:
7351
diff
changeset
|
1516 if (commandflag > 0 && !input_pending && !detect_input_pending ()) |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
1517 prepare_menu_bars (); |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
1518 |
| 518 | 1519 /* Save outer setjmp data, in case called recursively. */ |
| 650 | 1520 save_getcjmp (save_jump); |
| 518 | 1521 |
| 1522 stop_polling (); | |
| 1523 | |
| 1524 if (commandflag >= 0 && !input_pending && !detect_input_pending ()) | |
| 1525 redisplay (); | |
| 1526 | |
| 1527 if (_setjmp (getcjmp)) | |
| 1528 { | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
1529 XSETINT (c, quit_char); |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1530 #ifdef MULTI_FRAME |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1531 XSETFRAME (current_perdisplay->internal_last_event_frame, |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1532 selected_frame); |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1533 current_perdisplay->Vlast_event_frame |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1534 = current_perdisplay->internal_last_event_frame; |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1535 #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
|
1536 /* 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
|
1537 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
|
1538 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
|
1539 Vquit_flag = Qnil; |
| 518 | 1540 |
| 1541 goto non_reread; | |
| 1542 } | |
| 1543 | |
| 1544 /* Message turns off echoing unless more keystrokes turn it on again. */ | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
1545 if (echo_area_glyphs && *echo_area_glyphs |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
1546 && echo_area_glyphs != current_perdisplay->echobuf) |
| 518 | 1547 cancel_echoing (); |
| 1548 else | |
| 1549 /* If already echoing, continue. */ | |
| 1550 echo_dash (); | |
| 1551 | |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1552 /* Try reading a character via menu prompting in the minibuf. |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1553 Try this before the sit-for, because the sit-for |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1554 would do the wrong thing if we are supposed to do |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1555 menu prompting. If EVENT_HAS_PARAMETERS then we are reading |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1556 after a mouse event so don't try a minibuf menu. */ |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1557 c = Qnil; |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1558 if (nmaps > 0 && INTERACTIVE |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1559 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event) |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1560 /* Don't bring up a menu if we already have another event. */ |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1561 && NILP (Vunread_command_events) |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1562 && unread_command_char < 0 |
|
7396
3774d6d8a5ee
(read_char): Don't text do_mouse_tracking;
Richard M. Stallman <rms@gnu.org>
parents:
7351
diff
changeset
|
1563 && !detect_input_pending ()) |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1564 { |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1565 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps); |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1566 if (! NILP (c)) |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1567 { |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1568 key_already_recorded = 1; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1569 goto non_reread; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1570 } |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1571 } |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1572 |
| 518 | 1573 /* If in middle of key sequence and minibuffer not active, |
| 1574 start echoing if enough time elapses. */ | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
1575 if (minibuf_level == 0 && !current_perdisplay->immediate_echo |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
1576 && this_command_key_count > 0 |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
1577 && ! noninteractive |
| 518 | 1578 && echo_keystrokes > 0 |
| 1579 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0)) | |
| 1580 { | |
| 1581 Lisp_Object tem0; | |
| 1582 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1583 /* After a mouse event, start echoing right away. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1584 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
|
1585 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
|
1586 if (EVENT_HAS_PARAMETERS (prev_event)) |
| 518 | 1587 echo (); |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1588 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1589 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1590 tem0 = sit_for (echo_keystrokes, 0, 1, 1); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1591 if (EQ (tem0, Qt)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1592 echo (); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1593 } |
| 518 | 1594 } |
| 1595 | |
| 1596 /* Maybe auto save due to number of keystrokes or idle time. */ | |
| 1597 | |
| 1598 if (commandflag != 0 | |
| 1599 && auto_save_interval > 0 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1600 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20) |
| 518 | 1601 && !detect_input_pending ()) |
| 1602 { | |
| 1603 jmp_buf temp; | |
| 1604 save_getcjmp (temp); | |
| 1605 Fdo_auto_save (Qnil, Qnil); | |
|
10147
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
1606 /* Hooks can actually change some buffers in auto save. */ |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
1607 redisplay (); |
| 518 | 1608 restore_getcjmp (temp); |
| 1609 } | |
| 1610 | |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1611 /* Try reading using an X menu. |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1612 This is never confused with reading using the minibuf |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1613 because the recursive call of read_char in read_char_minibuf_menu_prompt |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1614 does not pass on any keymaps. */ |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1615 if (nmaps > 0 && INTERACTIVE |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1616 && !NILP (prev_event) && EVENT_HAS_PARAMETERS (prev_event) |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1617 /* Don't bring up a menu if we already have another event. */ |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
1618 && NILP (Vunread_command_events) |
|
7396
3774d6d8a5ee
(read_char): Don't text do_mouse_tracking;
Richard M. Stallman <rms@gnu.org>
parents:
7351
diff
changeset
|
1619 && unread_command_char < 0) |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
1620 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu); |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1621 |
| 518 | 1622 /* Slow down auto saves logarithmically in size of current buffer, |
| 1623 and garbage collect while we're at it. */ | |
|
3920
81d29cf5b232
* keyboard.c (read_char): Don't do idle autosaves if we're not
Jim Blandy <jimb@redhat.com>
parents:
3887
diff
changeset
|
1624 if (INTERACTIVE && NILP (c)) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1625 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1626 int delay_level, buffer_size; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1627 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1628 if (! MINI_WINDOW_P (XWINDOW (selected_window))) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1629 last_non_minibuf_size = Z - BEG; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1630 buffer_size = (last_non_minibuf_size >> 8) + 1; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1631 delay_level = 0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1632 while (buffer_size > 64) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1633 delay_level++, buffer_size -= buffer_size >> 2; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1634 if (delay_level < 4) delay_level = 4; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1635 /* 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
|
1636 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
|
1637 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1638 /* 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
|
1639 if (commandflag != 0 |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1640 && num_nonmacro_input_chars > last_auto_save |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1641 && INTEGERP (Vauto_save_timeout) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1642 && XINT (Vauto_save_timeout) > 0) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1643 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1644 Lisp_Object tem0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1645 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
|
1646 tem0 = sit_for (delay, 0, 1, 1); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1647 if (EQ (tem0, Qt)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1648 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1649 jmp_buf temp; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1650 save_getcjmp (temp); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1651 Fdo_auto_save (Qnil, Qnil); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1652 restore_getcjmp (temp); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1653 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1654 /* 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
|
1655 available, garbage collect if there has been enough |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1656 consing going on to make it worthwhile. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1657 if (!detect_input_pending () |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1658 && consing_since_gc > gc_cons_threshold / 2) |
|
10147
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
1659 Fgarbage_collect (); |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
1660 /* prepare_menu_bars isn't safe here, but it should |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
1661 also be unnecessary. */ |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
1662 redisplay (); |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1663 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1664 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1665 } |
| 518 | 1666 |
| 1667 /* Actually read a character, waiting if necessary. */ | |
|
3174
719776bc7f7d
(read_char): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3117
diff
changeset
|
1668 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
|
1669 { |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1670 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
|
1671 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
|
1672 break; |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1673 if (commandflag >= 0 && !input_pending && !detect_input_pending ()) |
|
7857
e735b56f7423
(read_char): When we loop and call redisplay,
Richard M. Stallman <rms@gnu.org>
parents:
7828
diff
changeset
|
1674 { |
|
e735b56f7423
(read_char): When we loop and call redisplay,
Richard M. Stallman <rms@gnu.org>
parents:
7828
diff
changeset
|
1675 prepare_menu_bars (); |
|
e735b56f7423
(read_char): When we loop and call redisplay,
Richard M. Stallman <rms@gnu.org>
parents:
7828
diff
changeset
|
1676 redisplay (); |
|
e735b56f7423
(read_char): When we loop and call redisplay,
Richard M. Stallman <rms@gnu.org>
parents:
7828
diff
changeset
|
1677 } |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1678 } |
| 518 | 1679 |
| 1680 /* Terminate Emacs in batch mode if at eof. */ | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1681 if (noninteractive && INTEGERP (c) && XINT (c) < 0) |
| 518 | 1682 Fkill_emacs (make_number (1)); |
| 1683 | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1684 if (INTEGERP (c)) |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1685 { |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1686 /* Add in any extra modifiers, where appropriate. */ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1687 if ((extra_keyboard_modifiers & CHAR_CTL) |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1688 || ((extra_keyboard_modifiers & 0177) < ' ' |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1689 && (extra_keyboard_modifiers & 0177) != 0)) |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1690 XSETINT (c, make_ctrl_char (XINT (c))); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1691 |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1692 /* Transfer any other modifier bits directly from |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1693 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
|
1694 in the low 16 bits of extra_keyboard_modifiers. */ |
|
3677
597bde558c91
(read_char): Set c properly as a Lisp int.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1695 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL)); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1696 } |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1697 |
| 518 | 1698 non_reread: |
| 1699 | |
| 650 | 1700 restore_getcjmp (save_jump); |
| 518 | 1701 |
| 1702 start_polling (); | |
| 1703 | |
|
8569
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1704 /* Buffer switch events are only for internal wakeups |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1705 so don't show them to the user. */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1706 if (BUFFERP (c)) |
|
8569
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1707 return c; |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1708 |
|
8994
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1709 if (key_already_recorded) |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1710 return c; |
|
818bddaf3e03
(cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents:
8938
diff
changeset
|
1711 |
|
8569
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1712 /* Wipe the echo area. */ |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1713 echo_area_glyphs = 0; |
| 518 | 1714 |
| 1715 /* Handle things that only apply to characters. */ | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1716 if (INTEGERP (c)) |
| 518 | 1717 { |
| 1718 /* 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
|
1719 if (XINT (c) == -1) |
| 518 | 1720 return c; |
| 1721 | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1722 if (STRINGP (Vkeyboard_translate_table) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
1723 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c)) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
1724 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]); |
| 518 | 1725 } |
| 1726 | |
|
9689
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1727 /* If this event is a mouse click in the menu bar, |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1728 return just menu-bar for now. Modify the mouse click event |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1729 so we won't do this twice, then queue it up. */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1730 if (EVENT_HAS_PARAMETERS (c) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1731 && CONSP (XCONS (c)->cdr) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1732 && CONSP (EVENT_START (c)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1733 && CONSP (XCONS (EVENT_START (c))->cdr)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1734 { |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1735 Lisp_Object posn; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1736 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1737 posn = POSN_BUFFER_POSN (EVENT_START (c)); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1738 /* Handle menu-bar events: |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1739 insert the dummy prefix event `menu-bar'. */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1740 if (EQ (posn, Qmenu_bar)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1741 { |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1742 /* Change menu-bar to (menu-bar) as the event "position". */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1743 POSN_BUFFER_POSN (EVENT_START (c)) = Fcons (posn, Qnil); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1744 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1745 also_record = c; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1746 Vunread_command_events = Fcons (c, Vunread_command_events); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1747 c = posn; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1748 } |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1749 } |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1750 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1751 record_char (c); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1752 if (! NILP (also_record)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1753 record_char (also_record); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1754 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1755 from_macro: |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1756 reread_first: |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1757 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1758 /* Don't echo mouse motion events. */ |
|
10233
100a10bb4d47
(read_char): Don't echo keys when echo_keystrokes is 0.
Richard M. Stallman <rms@gnu.org>
parents:
10147
diff
changeset
|
1759 if (echo_keystrokes |
|
100a10bb4d47
(read_char): Don't echo keys when echo_keystrokes is 0.
Richard M. Stallman <rms@gnu.org>
parents:
10147
diff
changeset
|
1760 && ! (EVENT_HAS_PARAMETERS (c) |
|
100a10bb4d47
(read_char): Don't echo keys when echo_keystrokes is 0.
Richard M. Stallman <rms@gnu.org>
parents:
10147
diff
changeset
|
1761 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) |
|
9689
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1762 { |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1763 echo_char (c); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1764 if (! NILP (also_record)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1765 echo_char (also_record); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1766 } |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1767 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1768 /* Record this character as part of the current key. */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1769 add_command_key (c); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1770 if (! NILP (also_record)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1771 add_command_key (also_record); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1772 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1773 /* Re-reading in the middle of a command */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1774 reread: |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1775 last_input_char = c; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1776 num_input_chars++; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1777 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1778 /* Process the help character specially if enabled */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1779 if (EQ (c, Vhelp_char) && !NILP (Vhelp_form)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1780 { |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1781 Lisp_Object tem0; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1782 count = specpdl_ptr - specpdl; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1783 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1784 record_unwind_protect (Fset_window_configuration, |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1785 Fcurrent_window_configuration (Qnil)); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1786 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1787 tem0 = Feval (Vhelp_form); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1788 if (STRINGP (tem0)) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1789 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1790 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1791 cancel_echoing (); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1792 do |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1793 c = read_char (0, 0, 0, Qnil, 0); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1794 while (BUFFERP (c)); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1795 /* Remove the help from the frame */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1796 unbind_to (count, Qnil); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1797 prepare_menu_bars (); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1798 redisplay (); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1799 if (EQ (c, make_number (040))) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1800 { |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1801 cancel_echoing (); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1802 do |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1803 c = read_char (0, 0, 0, Qnil, 0); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1804 while (BUFFERP (c)); |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1805 } |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1806 } |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1807 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1808 return c; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1809 } |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1810 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1811 /* Record the input event C in various ways. */ |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1812 |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1813 static void |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1814 record_char (c) |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1815 Lisp_Object c; |
|
fb713e1560d1
(record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
9668
diff
changeset
|
1816 { |
| 518 | 1817 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
|
1818 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
|
1819 if (++recent_keys_index >= NUM_RECENT_KEYS) |
| 518 | 1820 recent_keys_index = 0; |
| 1821 | |
| 1822 /* Write c to the dribble file. If c is a lispy event, write | |
| 1823 the event's symbol to the dribble file, in <brackets>. Bleaugh. | |
| 1824 If you, dear reader, have a better idea, you've got the source. :-) */ | |
| 1825 if (dribble) | |
| 1826 { | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1827 if (INTEGERP (c)) |
|
8569
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1828 { |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1829 if (XUINT (c) < 0x100) |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1830 putc (XINT (c), dribble); |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1831 else |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1832 fprintf (dribble, " 0x%x", XUINT (c)); |
|
3a9e9d3df590
(read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents:
8502
diff
changeset
|
1833 } |
| 518 | 1834 else |
| 1835 { | |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
1836 Lisp_Object dribblee; |
| 518 | 1837 |
| 1838 /* If it's a structured event, take the event header. */ | |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
1839 dribblee = EVENT_HEAD (c); |
| 518 | 1840 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
1841 if (SYMBOLP (dribblee)) |
| 518 | 1842 { |
| 1843 putc ('<', dribble); | |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
1844 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
|
1845 XSYMBOL (dribblee)->name->size, |
| 518 | 1846 dribble); |
| 1847 putc ('>', dribble); | |
| 1848 } | |
| 1849 } | |
| 1850 | |
| 1851 fflush (dribble); | |
| 1852 } | |
| 1853 | |
| 1854 store_kbd_macro_char (c); | |
| 1855 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1856 num_nonmacro_input_chars++; |
| 518 | 1857 } |
| 1858 | |
| 1859 Lisp_Object | |
| 1860 print_help (object) | |
| 1861 Lisp_Object object; | |
| 1862 { | |
|
9864
0299d64cdd07
(print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
9840
diff
changeset
|
1863 struct buffer *old = current_buffer; |
| 518 | 1864 Fprinc (object, Qnil); |
|
9864
0299d64cdd07
(print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
9840
diff
changeset
|
1865 set_buffer_internal (XBUFFER (Vstandard_output)); |
|
0299d64cdd07
(print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
9840
diff
changeset
|
1866 call0 (intern ("help-mode")); |
|
0299d64cdd07
(print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
9840
diff
changeset
|
1867 set_buffer_internal (old); |
| 518 | 1868 return Qnil; |
| 1869 } | |
| 1870 | |
| 1871 /* Copy out or in the info on where C-g should throw to. | |
| 1872 This is used when running Lisp code from within get_char, | |
| 1873 in case get_char is called recursively. | |
| 1874 See read_process_output. */ | |
| 1875 | |
| 1876 save_getcjmp (temp) | |
| 1877 jmp_buf temp; | |
| 1878 { | |
| 1879 bcopy (getcjmp, temp, sizeof getcjmp); | |
| 1880 } | |
| 1881 | |
| 1882 restore_getcjmp (temp) | |
| 1883 jmp_buf temp; | |
| 1884 { | |
| 1885 bcopy (temp, getcjmp, sizeof getcjmp); | |
| 1886 } | |
| 1887 | |
| 1888 | |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
1889 #ifdef HAVE_MOUSE |
|
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
1890 |
| 518 | 1891 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use |
| 1892 of this function. */ | |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
1893 |
| 518 | 1894 static Lisp_Object |
| 1895 tracking_off (old_value) | |
| 1896 Lisp_Object old_value; | |
| 1897 { | |
|
9881
02cd4dde69e1
(tracking_off): Test old value with NILP.
Richard M. Stallman <rms@gnu.org>
parents:
9864
diff
changeset
|
1898 do_mouse_tracking = old_value; |
|
02cd4dde69e1
(tracking_off): Test old value with NILP.
Richard M. Stallman <rms@gnu.org>
parents:
9864
diff
changeset
|
1899 if (NILP (old_value)) |
| 518 | 1900 { |
| 1901 /* Redisplay may have been preempted because there was input | |
| 1902 available, and it assumes it will be called again after the | |
| 1903 input has been processed. If the only input available was | |
| 1904 the sort that we have just disabled, then we need to call | |
| 1905 redisplay. */ | |
| 1906 if (!readable_events ()) | |
| 1907 { | |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
1908 prepare_menu_bars (); |
| 518 | 1909 redisplay_preserve_echo_area (); |
| 1910 get_input_pending (&input_pending); | |
| 1911 } | |
| 1912 } | |
| 1913 } | |
| 1914 | |
| 1915 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
|
1916 "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
|
1917 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
|
1918 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
|
1919 Normally, mouse motion is ignored.") |
| 518 | 1920 (args) |
| 1921 Lisp_Object args; | |
| 1922 { | |
| 1923 int count = specpdl_ptr - specpdl; | |
| 1924 Lisp_Object val; | |
| 1925 | |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
1926 record_unwind_protect (tracking_off, do_mouse_tracking); |
| 518 | 1927 |
|
7246
7f6b5e9ba2c7
(Ftrack_mouse): Call prepare_menu_bars at the start.
Richard M. Stallman <rms@gnu.org>
parents:
7225
diff
changeset
|
1928 if (!input_pending && !detect_input_pending ()) |
|
7f6b5e9ba2c7
(Ftrack_mouse): Call prepare_menu_bars at the start.
Richard M. Stallman <rms@gnu.org>
parents:
7225
diff
changeset
|
1929 prepare_menu_bars (); |
|
7f6b5e9ba2c7
(Ftrack_mouse): Call prepare_menu_bars at the start.
Richard M. Stallman <rms@gnu.org>
parents:
7225
diff
changeset
|
1930 |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
1931 XSETFRAME (do_mouse_tracking, selected_frame); |
| 518 | 1932 |
| 1933 val = Fprogn (args); | |
| 1934 return unbind_to (count, val); | |
| 1935 } | |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
1936 |
|
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
1937 #endif /* HAVE_MOUSE */ |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1938 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1939 /* Low level keyboard/mouse input. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1940 kbd_buffer_store_event places events in kbd_buffer, and |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1941 kbd_buffer_get_event retrieves them. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1942 mouse_moved indicates when the mouse has moved again, and |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1943 *mouse_position_hook provides the mouse position. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1944 |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
1945 static PERDISPLAY * |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1946 find_active_event_queue (check_mouse) |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1947 int check_mouse; |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1948 { |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
1949 PERDISPLAY *perd; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
1950 |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
1951 for (perd = all_perdisplays; perd; perd = perd->next_perdisplay) |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1952 { |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1953 if (perd->kbd_fetch_ptr != perd->kbd_store_ptr) |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1954 return perd; |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1955 #ifdef HAVE_MOUSE |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1956 if (check_mouse && FRAMEP (do_mouse_tracking) && mouse_moved) |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1957 return perd; |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1958 #endif |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1959 } |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1960 return 0; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1961 } |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1962 |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1963 /* Return true iff there are any events in the queue that read-char |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1964 would return. If this returns false, a read-char would block. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1965 static int |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1966 readable_events () |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1967 { |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
1968 return find_active_event_queue (1) != NULL; |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1969 } |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1970 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1971 /* Set this for debugging, to have a way to get out */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
1972 int stop_character; |
| 518 | 1973 |
| 1974 /* Store an event obtained at interrupt level into kbd_buffer, fifo */ | |
| 1975 | |
| 1976 void | |
| 1977 kbd_buffer_store_event (event) | |
| 1978 register struct input_event *event; | |
| 1979 { | |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
1980 PERDISPLAY *perd = get_perdisplay (XFRAME (event->frame_or_window)); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
1981 |
| 518 | 1982 if (event->kind == no_event) |
| 1983 abort (); | |
| 1984 | |
| 1985 if (event->kind == ascii_keystroke) | |
| 1986 { | |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
1987 register int c = event->code & 0377; |
| 518 | 1988 |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1989 if (event->modifiers & ctrl_modifier) |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1990 c = make_ctrl_char (c); |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1991 |
|
4282
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
1992 c |= (event->modifiers |
|
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
1993 & (meta_modifier | alt_modifier |
|
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
1994 | hyper_modifier | super_modifier)); |
|
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
1995 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1996 if (c == quit_char) |
| 518 | 1997 { |
|
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1998 extern SIGTYPE interrupt_signal (); |
|
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1999 |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
2000 #ifdef MULTI_FRAME |
| 518 | 2001 /* 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
|
2002 input, set Vlast_event_frame properly. If this doesn't |
| 518 | 2003 get returned to Emacs as an event, the next event read |
| 765 | 2004 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
|
2005 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2006 Lisp_Object focus; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2007 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2008 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window)); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2009 if (NILP (focus)) |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2010 perd->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
|
2011 else |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2012 perd->internal_last_event_frame = focus; |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2013 perd->Vlast_event_frame = perd->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
|
2014 } |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
2015 #endif |
|
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
2016 |
| 648 | 2017 last_event_timestamp = event->timestamp; |
| 518 | 2018 interrupt_signal (); |
| 2019 return; | |
| 2020 } | |
| 2021 | |
| 2022 if (c && c == stop_character) | |
| 2023 { | |
| 2024 sys_suspend (); | |
| 2025 return; | |
| 2026 } | |
| 2027 } | |
| 2028 | |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2029 if (perd->kbd_store_ptr - perd->kbd_buffer == KBD_BUFFER_SIZE) |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2030 perd->kbd_store_ptr = perd->kbd_buffer; |
| 518 | 2031 |
| 2032 /* Don't let the very last slot in the buffer become full, | |
| 2033 since that would make the two pointers equal, | |
| 2034 and that is indistinguishable from an empty buffer. | |
| 2035 Discard the event if it would fill the last slot. */ | |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2036 if (perd->kbd_fetch_ptr - 1 != perd->kbd_store_ptr) |
| 518 | 2037 { |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2038 volatile struct input_event *sp = perd->kbd_store_ptr; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2039 sp->kind = event->kind; |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2040 if (event->kind == selection_request_event) |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2041 { |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2042 /* We must not use the ordinary copying code for this case, |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2043 since `part' is an enum and copying it might not copy enough |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2044 in this case. */ |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2045 bcopy (event, (char *) sp, sizeof (*event)); |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2046 } |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2047 else |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2048 { |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2049 sp->code = event->code; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2050 sp->part = event->part; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2051 sp->frame_or_window = event->frame_or_window; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2052 sp->modifiers = event->modifiers; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2053 sp->x = event->x; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2054 sp->y = event->y; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2055 sp->timestamp = event->timestamp; |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
2056 } |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
2057 (XVECTOR (perd->kbd_buffer_frame_or_window)->contents[perd->kbd_store_ptr |
|
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
2058 - perd->kbd_buffer] |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2059 = event->frame_or_window); |
| 518 | 2060 |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2061 perd->kbd_store_ptr++; |
| 518 | 2062 } |
| 2063 } | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2064 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2065 /* Read one event from the event buffer, waiting if necessary. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2066 The value is a Lisp object representing the event. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2067 The value is nil for an event that should be ignored, |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2068 or that was handled here. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2069 We always read and discard one event. */ |
| 518 | 2070 |
| 2071 static Lisp_Object | |
| 2072 kbd_buffer_get_event () | |
| 2073 { | |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
2074 PERDISPLAY *perd; |
| 518 | 2075 register int c; |
| 2076 Lisp_Object obj; | |
| 2077 | |
| 2078 if (noninteractive) | |
| 2079 { | |
| 2080 c = getchar (); | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2081 XSETINT (obj, c); |
| 518 | 2082 return obj; |
| 2083 } | |
| 2084 | |
| 2085 /* Wait until there is input available. */ | |
| 2086 for (;;) | |
| 2087 { | |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2088 perd = find_active_event_queue (1); |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2089 if (perd) |
| 518 | 2090 break; |
| 2091 | |
| 2092 /* If the quit flag is set, then read_char will return | |
| 2093 quit_char, so that counts as "available input." */ | |
| 2094 if (!NILP (Vquit_flag)) | |
| 2095 quit_throw_to_read_char (); | |
| 2096 | |
| 2097 /* One way or another, wait until input is available; then, if | |
| 2098 interrupt handlers have not read it, read it now. */ | |
| 2099 | |
| 2100 #ifdef OLDVMS | |
| 2101 wait_for_kbd_input (); | |
| 2102 #else | |
| 2103 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 2104 #ifdef SIGIO | |
| 2105 gobble_input (0); | |
| 2106 #endif /* SIGIO */ | |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2107 perd = find_active_event_queue (1); |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2108 if (!perd) |
| 518 | 2109 { |
| 650 | 2110 Lisp_Object minus_one; |
| 2111 | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2112 XSETINT (minus_one, -1); |
| 650 | 2113 wait_reading_process_input (0, 0, minus_one, 1); |
| 518 | 2114 |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2115 if (!interrupt_input && find_active_event_queue (0) == NULL) |
|
5779
8fae1a51e9c5
(kbd_buffer_get_event): Pass 1 to read_avail_input.
Richard M. Stallman <rms@gnu.org>
parents:
5684
diff
changeset
|
2116 /* Pass 1 for EXPECT since we just waited to have input. */ |
|
8fae1a51e9c5
(kbd_buffer_get_event): Pass 1 to read_avail_input.
Richard M. Stallman <rms@gnu.org>
parents:
5684
diff
changeset
|
2117 read_avail_input (1); |
| 518 | 2118 } |
| 2119 #endif /* not VMS */ | |
| 2120 } | |
| 2121 | |
| 2122 /* At this point, we know that there is a readable event available | |
| 2123 somewhere. If the event queue is empty, then there must be a | |
| 2124 mouse movement enabled and available. */ | |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2125 if (perd->kbd_fetch_ptr != perd->kbd_store_ptr) |
| 518 | 2126 { |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2127 struct input_event *event; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2128 |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2129 event = ((perd->kbd_fetch_ptr < perd->kbd_buffer + KBD_BUFFER_SIZE) |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2130 ? perd->kbd_fetch_ptr |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2131 : perd->kbd_buffer); |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2132 |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2133 last_event_timestamp = event->timestamp; |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
2134 |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2135 obj = Qnil; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2136 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2137 /* These two kinds of events get special handling |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2138 and don't actually appear to the command loop. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2139 We return nil for them. */ |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2140 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
|
2141 { |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2142 #ifdef HAVE_X11 |
|
10635
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2143 struct input_event copy = *event; |
|
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2144 /* Remove it from the buffer before processing it, |
|
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2145 since otherwise swallow_events will see it |
|
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2146 and process it again. */ |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2147 perd->kbd_fetch_ptr = event + 1; |
|
10635
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2148 x_handle_selection_request (©); |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2149 #else |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2150 /* 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
|
2151 a window system. */ |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2152 abort (); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2153 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2154 } |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2155 |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2156 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
|
2157 { |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2158 #ifdef HAVE_X11 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2159 x_handle_selection_clear (event); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2160 perd->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
|
2161 #else |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2162 /* 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
|
2163 a window system. */ |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2164 abort (); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2165 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2166 } |
|
5133
16fe8285dc2a
(kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents:
5078
diff
changeset
|
2167 #ifdef HAVE_X11 |
|
16fe8285dc2a
(kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents:
5078
diff
changeset
|
2168 else if (event->kind == delete_window_event) |
|
16fe8285dc2a
(kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents:
5078
diff
changeset
|
2169 { |
|
9215
fa3883c219ea
(head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents:
9124
diff
changeset
|
2170 /* Make an event (delete-frame (FRAME)). */ |
|
fa3883c219ea
(head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents:
9124
diff
changeset
|
2171 obj = Fcons (event->frame_or_window, Qnil); |
|
9729
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2172 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil)); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2173 perd->kbd_fetch_ptr = event + 1; |
|
9729
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2174 } |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2175 else if (event->kind == iconify_event) |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2176 { |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2177 /* Make an event (iconify-frame (FRAME)). */ |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2178 obj = Fcons (event->frame_or_window, Qnil); |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2179 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil)); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2180 perd->kbd_fetch_ptr = event + 1; |
|
9729
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2181 } |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2182 else if (event->kind == deiconify_event) |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2183 { |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2184 /* Make an event (make-frame-visible (FRAME)). */ |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2185 obj = Fcons (event->frame_or_window, Qnil); |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
2186 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil)); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2187 perd->kbd_fetch_ptr = event + 1; |
|
5133
16fe8285dc2a
(kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents:
5078
diff
changeset
|
2188 } |
|
16fe8285dc2a
(kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents:
5078
diff
changeset
|
2189 #endif |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
2190 else if (event->kind == menu_bar_event) |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
2191 { |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
2192 /* The event value is in the frame_or_window slot. */ |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
2193 obj = event->frame_or_window; |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2194 perd->kbd_fetch_ptr = event + 1; |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
2195 } |
|
6749
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
2196 else if (event->kind == buffer_switch_event) |
|
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
2197 { |
|
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
2198 /* The value doesn't matter here; only the type is tested. */ |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2199 XSETBUFFER (obj, current_buffer); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2200 perd->kbd_fetch_ptr = event + 1; |
|
6749
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
2201 } |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2202 /* Just discard these, by returning nil. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2203 (They shouldn't be found in the buffer, |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2204 but on some machines it appears they do show up.) */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2205 else if (event->kind == no_event) |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2206 perd->kbd_fetch_ptr = event + 1; |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2207 |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2208 /* 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
|
2209 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
|
2210 else |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2211 { |
|
3452
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
2212 #ifdef MULTI_FRAME |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2213 Lisp_Object frame; |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2214 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
|
2215 |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2216 frame = event->frame_or_window; |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
2217 if (WINDOWP (frame)) |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2218 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
|
2219 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2220 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
|
2221 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
|
2222 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
|
2223 |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2224 if (! EQ (frame, perd->internal_last_event_frame) |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2225 && 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
|
2226 obj = make_lispy_switch_frame (frame); |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2227 perd->internal_last_event_frame = frame; |
|
3452
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
2228 #endif /* MULTI_FRAME */ |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2229 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2230 /* 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
|
2231 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
|
2232 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2233 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
|
2234 { |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2235 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
|
2236 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2237 /* 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
|
2238 event->kind = no_event; |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
2239 XVECTOR (perd->kbd_buffer_frame_or_window)->contents[event - perd->kbd_buffer] = Qnil; |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2240 |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2241 perd->kbd_fetch_ptr = event + 1; |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2242 } |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
2243 } |
| 518 | 2244 } |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
2245 #ifdef HAVE_MOUSE |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2246 /* Try generating a mouse motion event. */ |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
2247 else if (FRAMEP (do_mouse_tracking) && mouse_moved) |
| 518 | 2248 { |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
2249 FRAME_PTR f = XFRAME (do_mouse_tracking); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2250 Lisp_Object bar_window; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2251 enum scroll_bar_part part; |
| 732 | 2252 Lisp_Object x, y; |
| 2253 unsigned long time; | |
| 518 | 2254 |
|
9668
38a4e4386aed
(kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents:
9652
diff
changeset
|
2255 /* Note that this uses F to determine which display to look at. |
|
38a4e4386aed
(kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents:
9652
diff
changeset
|
2256 If there is no valid info, it does not store anything |
|
38a4e4386aed
(kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents:
9652
diff
changeset
|
2257 so x remains nil. */ |
|
38a4e4386aed
(kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents:
9652
diff
changeset
|
2258 x = Qnil; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2259 (*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
|
2260 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2261 obj = Qnil; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2262 |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
2263 #ifdef MULTI_FRAME |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2264 /* 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
|
2265 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
|
2266 frames. */ |
|
9668
38a4e4386aed
(kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents:
9652
diff
changeset
|
2267 if (!NILP (x) && f) |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2268 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2269 Lisp_Object frame; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2270 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2271 frame = FRAME_FOCUS_FRAME (f); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2272 if (NILP (frame)) |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2273 XSETFRAME (frame, f); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2274 |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2275 if (! EQ (frame, perd->internal_last_event_frame) |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2276 && XFRAME (frame) != selected_frame) |
|
3929
d620db2bc420
* keyboard.c (kbd_buffer_get_event): Correctly generate
Jim Blandy <jimb@redhat.com>
parents:
3920
diff
changeset
|
2277 obj = make_lispy_switch_frame (frame); |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2278 perd->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
|
2279 } |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2280 #endif |
|
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2281 |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2282 /* 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
|
2283 return a mouse-motion event. */ |
|
9668
38a4e4386aed
(kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents:
9652
diff
changeset
|
2284 if (!NILP (x) && NILP (obj)) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2285 obj = make_lispy_movement (f, bar_window, part, x, y, time); |
|
6805
8310b2eb6b06
(make_lispy_movement): Conditionalize on MULTI_FRAME.
Richard M. Stallman <rms@gnu.org>
parents:
6749
diff
changeset
|
2286 } |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
2287 #endif /* HAVE_MOUSE */ |
| 518 | 2288 else |
| 2289 /* We were promised by the above while loop that there was | |
| 2290 something for us to read! */ | |
| 2291 abort (); | |
| 2292 | |
| 2293 input_pending = readable_events (); | |
| 2294 | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2295 #ifdef MULTI_FRAME |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2296 perd->Vlast_event_frame = perd->internal_last_event_frame; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2297 #endif |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2298 |
| 518 | 2299 return (obj); |
| 2300 } | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2301 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2302 /* Process any events that are not user-visible, |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2303 then return, without reading any user-visible events. */ |
|
3104
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2304 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2305 void |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2306 swallow_events () |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2307 { |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
2308 PERDISPLAY *perd; |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
2309 while ((perd = find_active_event_queue (0)) != NULL) |
|
3104
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2310 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2311 struct input_event *event; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2312 |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2313 event = ((perd->kbd_fetch_ptr < perd->kbd_buffer + KBD_BUFFER_SIZE) |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2314 ? perd->kbd_fetch_ptr |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2315 : perd->kbd_buffer); |
|
3104
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2316 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2317 last_event_timestamp = event->timestamp; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2318 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2319 /* These two kinds of events get special handling |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2320 and don't actually appear to the command loop. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2321 if (event->kind == selection_request_event) |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2322 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2323 #ifdef HAVE_X11 |
|
10635
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2324 struct input_event copy; |
|
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2325 copy = *event; |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2326 perd->kbd_fetch_ptr = event + 1; |
|
10635
c807d6c947de
(kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents:
10626
diff
changeset
|
2327 x_handle_selection_request (©); |
|
3104
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2328 #else |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2329 /* 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
|
2330 a window system. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2331 abort (); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2332 #endif |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2333 } |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2334 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2335 else if (event->kind == selection_clear_event) |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2336 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2337 #ifdef HAVE_X11 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2338 x_handle_selection_clear (event); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
2339 perd->kbd_fetch_ptr = event + 1; |
|
3104
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2340 #else |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2341 /* 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
|
2342 a window system. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2343 abort (); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2344 #endif |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2345 } |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2346 else |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2347 break; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2348 } |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2349 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2350 get_input_pending (&input_pending); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2351 } |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
2352 |
| 518 | 2353 /* Caches for modify_event_symbol. */ |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2354 static Lisp_Object accent_key_syms; |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2355 static Lisp_Object system_key_syms; |
| 518 | 2356 static Lisp_Object func_key_syms; |
| 2357 static Lisp_Object mouse_syms; | |
| 2358 | |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2359 Lisp_Object Vsystem_key_alist; |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2360 |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2361 /* This is a list of keysym codes for special "accent" characters. |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2362 It parallels lispy_accent_keys. */ |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2363 |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2364 static int lispy_accent_codes[] = |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2365 { |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2366 #ifdef XK_dead_circumflex |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2367 XK_dead_circumflex, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2368 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2369 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2370 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2371 #ifdef XK_dead_grave |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2372 XK_dead_grave, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2373 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2374 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2375 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2376 #ifdef XK_dead_tilde |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2377 XK_dead_tilde, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2378 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2379 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2380 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2381 #ifdef XK_dead_diaeresis |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2382 XK_dead_diaeresis, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2383 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2384 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2385 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2386 #ifdef XK_dead_macron |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2387 XK_dead_macron, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2388 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2389 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2390 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2391 #ifdef XK_dead_degree |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2392 XK_dead_degree, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2393 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2394 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2395 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2396 #ifdef XK_dead_acute |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2397 XK_dead_acute, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2398 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2399 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2400 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2401 #ifdef XK_dead_cedilla |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2402 XK_dead_cedilla, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2403 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2404 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2405 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2406 #ifdef XK_dead_breve |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2407 XK_dead_breve, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2408 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2409 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2410 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2411 #ifdef XK_dead_ogonek |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2412 XK_dead_ogonek, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2413 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2414 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2415 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2416 #ifdef XK_dead_caron |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2417 XK_dead_caron, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2418 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2419 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2420 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2421 #ifdef XK_dead_doubleacute |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2422 XK_dead_doubleacute, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2423 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2424 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2425 #endif |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2426 #ifdef XK_dead_abovedot |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2427 XK_dead_abovedot, |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2428 #else |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2429 0, |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2430 #endif |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2431 }; |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2432 |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2433 /* This is a list of Lisp names for special "accent" characters. |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2434 It parallels lispy_accent_codes. */ |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2435 |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2436 static char *lispy_accent_keys[] = |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2437 { |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2438 "dead-circumflex", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2439 "dead-grave", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2440 "dead-tilde", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2441 "dead-diaeresis", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2442 "dead-macron", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2443 "dead-degree", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2444 "dead-acute", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2445 "dead-cedilla", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2446 "dead-breve", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2447 "dead-ogonek", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2448 "dead-caron", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2449 "dead-doubleacute", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2450 "dead-abovedot", |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2451 }; |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2452 |
| 518 | 2453 /* You'll notice that this table is arranged to be conveniently |
| 2454 indexed by X Windows keysym values. */ | |
| 2455 static char *lispy_function_keys[] = | |
| 2456 { | |
| 2457 /* X Keysym value */ | |
| 2458 | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2459 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */ |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2460 "backspace", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2461 "tab", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2462 "linefeed", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2463 "clear", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2464 0, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2465 "return", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2466 0, 0, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2467 0, 0, 0, /* 0xff10 */ |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2468 "pause", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2469 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
|
2470 "escape", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2471 0, 0, 0, 0, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2472 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
|
2473 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
|
2474 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
|
2475 |
| 518 | 2476 "home", /* 0xff50 */ /* IsCursorKey */ |
| 2477 "left", | |
| 2478 "up", | |
| 2479 "right", | |
| 2480 "down", | |
| 2481 "prior", | |
| 2482 "next", | |
| 2483 "end", | |
| 2484 "begin", | |
| 2485 0, /* 0xff59 */ | |
| 2486 0, 0, 0, 0, 0, 0, | |
| 2487 "select", /* 0xff60 */ /* IsMiscFunctionKey */ | |
| 2488 "print", | |
| 2489 "execute", | |
| 2490 "insert", | |
| 2491 0, /* 0xff64 */ | |
| 2492 "undo", | |
| 2493 "redo", | |
| 2494 "menu", | |
| 2495 "find", | |
| 2496 "cancel", | |
| 2497 "help", | |
| 2498 "break", /* 0xff6b */ | |
| 2499 | |
|
7587
efaee8861ad4
(read_char_minibuf_menu_prompt): Don't forget to initialize nobindings.
Richard M. Stallman <rms@gnu.org>
parents:
7547
diff
changeset
|
2500 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0, |
| 518 | 2501 0, /* 0xff76 */ |
|
3054
57814bb76b37
(lispy_function_keys): Add kp-numlock. Fix kp-backspace.
Richard M. Stallman <rms@gnu.org>
parents:
3042
diff
changeset
|
2502 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */ |
| 518 | 2503 "kp-space", /* 0xff80 */ /* IsKeypadKey */ |
| 2504 0, 0, 0, 0, 0, 0, 0, 0, | |
| 2505 "kp-tab", /* 0xff89 */ | |
| 2506 0, 0, 0, | |
| 2507 "kp-enter", /* 0xff8d */ | |
| 2508 0, 0, 0, | |
| 2509 "kp-f1", /* 0xff91 */ | |
| 2510 "kp-f2", | |
| 2511 "kp-f3", | |
| 2512 "kp-f4", | |
|
7547
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2513 "kp-home", /* 0xff95 */ |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2514 "kp-left", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2515 "kp-up", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2516 "kp-right", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2517 "kp-down", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2518 "kp-prior", /* kp-page-up */ |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2519 "kp-next", /* kp-page-down */ |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2520 "kp-end", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2521 "kp-begin", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2522 "kp-insert", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2523 "kp-delete", |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2524 0, /* 0xffa0 */ |
|
ca777847b11f
(lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents:
7532
diff
changeset
|
2525 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 518 | 2526 "kp-multiply", /* 0xffaa */ |
| 2527 "kp-add", | |
| 2528 "kp-separator", | |
| 2529 "kp-subtract", | |
| 2530 "kp-decimal", | |
| 2531 "kp-divide", /* 0xffaf */ | |
| 2532 "kp-0", /* 0xffb0 */ | |
| 2533 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9", | |
| 2534 0, /* 0xffba */ | |
| 2535 0, 0, | |
| 2536 "kp-equal", /* 0xffbd */ | |
| 2537 "f1", /* 0xffbe */ /* IsFunctionKey */ | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2538 "f2", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2539 "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
|
2540 "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
|
2541 "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
|
2542 "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
|
2543 "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
|
2544 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
|
2545 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
|
2546 0, 0, 0, 0, 0, 0, 0, "delete" |
| 518 | 2547 }; |
| 2548 | |
| 2549 static char *lispy_mouse_names[] = | |
| 2550 { | |
| 2551 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5" | |
| 2552 }; | |
| 2553 | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2554 /* Scroll bar parts. */ |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2555 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
|
2556 |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2557 /* 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
|
2558 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
|
2559 &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
|
2560 }; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2561 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2562 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2563 /* 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
|
2564 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
|
2565 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2566 The elements have the form |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2567 (BUTTON-NUMBER MODIFIER-MASK . REST) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2568 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
|
2569 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2570 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
|
2571 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
|
2572 location to be included in drag events. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2573 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2574 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
|
2575 |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2576 /* Information about the most recent up-going button event: Which |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2577 button, what location, and what time. */ |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2578 |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2579 static int last_mouse_button; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2580 static int last_mouse_x; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2581 static int last_mouse_y; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2582 static unsigned long button_down_time; |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2583 |
|
3993
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
2584 /* The maximum time between clicks to make a double-click, |
|
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
2585 or Qnil to disable double-click detection, |
|
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
2586 or Qt for no time limit. */ |
|
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
2587 Lisp_Object Vdouble_click_time; |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2588 |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2589 /* The number of clicks in this multiple-click. */ |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2590 |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2591 int double_click_count; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2592 |
|
5684
6479e0eabb27
* keyboard.c (make_lispy_event): Add USE_X_TOOLKIT conditional and
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5674
diff
changeset
|
2593 #ifdef USE_X_TOOLKIT |
|
6479e0eabb27
* keyboard.c (make_lispy_event): Add USE_X_TOOLKIT conditional and
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5674
diff
changeset
|
2594 extern Lisp_Object map_event_to_object (); |
|
6479e0eabb27
* keyboard.c (make_lispy_event): Add USE_X_TOOLKIT conditional and
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5674
diff
changeset
|
2595 #endif /* USE_X_TOOLKIT */ |
|
6479e0eabb27
* keyboard.c (make_lispy_event): Add USE_X_TOOLKIT conditional and
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5674
diff
changeset
|
2596 |
| 518 | 2597 /* Given a struct input_event, build the lisp event which represents |
| 2598 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
|
2599 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
|
2600 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2601 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
|
2602 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
|
2603 in order to build drag events when the button is released. */ |
| 518 | 2604 |
| 2605 static Lisp_Object | |
| 2606 make_lispy_event (event) | |
| 2607 struct input_event *event; | |
| 2608 { | |
|
5394
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2609 int i; |
|
ca6521958577
(lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents:
5371
diff
changeset
|
2610 |
|
10457
2ab3bd0288a9
Change all occurences of SWITCH_ENUM_BUG to use SWITCH_ENUM_CAST instead.
Karl Heuer <kwzh@gnu.org>
parents:
10433
diff
changeset
|
2611 switch (SWITCH_ENUM_CAST (event->kind)) |
| 518 | 2612 { |
| 2613 /* A simple keystroke. */ | |
| 2614 case ascii_keystroke: | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2615 { |
|
8938
16c1ca187613
(kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents:
8936
diff
changeset
|
2616 Lisp_Object lispy_c; |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2617 int c = event->code & 0377; |
|
2867
5b72eb2483e7
* xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents:
2789
diff
changeset
|
2618 /* 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
|
2619 when proper. */ |
|
5b72eb2483e7
* xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents:
2789
diff
changeset
|
2620 if (event->modifiers & ctrl_modifier) |
|
2954
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
2621 c = make_ctrl_char (c); |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
2622 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
2623 /* 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
|
2624 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
|
2625 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
|
2626 c |= (event->modifiers |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2627 & (meta_modifier | alt_modifier |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2628 | hyper_modifier | super_modifier)); |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2629 button_down_time = 0; |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
2630 XSETFASTINT (lispy_c, c); |
|
8938
16c1ca187613
(kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents:
8936
diff
changeset
|
2631 return lispy_c; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2632 } |
| 518 | 2633 |
| 2634 /* A function key. The symbol may need to have modifier prefixes | |
| 2635 tacked onto it. */ | |
| 2636 case non_ascii_keystroke: | |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2637 button_down_time = 0; |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2638 |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2639 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++) |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2640 if (event->code == lispy_accent_codes[i]) |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2641 return modify_event_symbol (i, |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2642 event->modifiers, |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2643 Qfunction_key, Qnil, |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2644 lispy_accent_keys, &accent_key_syms, |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2645 (sizeof (lispy_accent_keys) |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2646 / sizeof (lispy_accent_keys[0]))); |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2647 |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2648 /* Handle system-specific keysyms. */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2649 if (event->code & (1 << 28)) |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2650 { |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2651 /* We need to use an alist rather than a vector as the cache |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2652 since we can't make a vector long enuf. */ |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2653 if (NILP (system_key_syms)) |
|
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2654 system_key_syms = Fcons (Qnil, Qnil); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2655 return modify_event_symbol (event->code & 0xffffff, |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2656 event->modifiers, |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2657 Qfunction_key, Vsystem_key_alist, |
|
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
2658 0, &system_key_syms, 0xffffff); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2659 } |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2660 |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2661 return modify_event_symbol (event->code - 0xff00, |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2662 event->modifiers, |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
2663 Qfunction_key, Qnil, |
| 518 | 2664 lispy_function_keys, &func_key_syms, |
| 2665 (sizeof (lispy_function_keys) | |
| 2666 / sizeof (lispy_function_keys[0]))); | |
| 2667 break; | |
| 2668 | |
| 9572 | 2669 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE) |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2670 /* 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
|
2671 a press, click or drag, and build the appropriate structure. */ |
| 518 | 2672 case mouse_click: |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2673 case scroll_bar_click: |
| 518 | 2674 { |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2675 int button = event->code; |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2676 int is_double; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2677 Lisp_Object position; |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2678 Lisp_Object *start_pos_ptr; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2679 Lisp_Object start_pos; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2680 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2681 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
|
2682 abort (); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2683 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2684 /* 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
|
2685 if (event->kind == mouse_click) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2686 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2687 int part; |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2688 FRAME_PTR f = XFRAME (event->frame_or_window); |
|
6024
0aa565fdb1b9
(make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents:
6020
diff
changeset
|
2689 Lisp_Object window; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2690 Lisp_Object posn; |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2691 int row, column; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2692 |
|
7351
f5cf08a3a645
(make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents:
7345
diff
changeset
|
2693 /* Ignore mouse events that were made on frame that |
|
f5cf08a3a645
(make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents:
7345
diff
changeset
|
2694 have been deleted. */ |
|
f5cf08a3a645
(make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents:
7345
diff
changeset
|
2695 if (! FRAME_LIVE_P (f)) |
|
f5cf08a3a645
(make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents:
7345
diff
changeset
|
2696 return Qnil; |
|
f5cf08a3a645
(make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents:
7345
diff
changeset
|
2697 |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2698 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y), |
|
10275
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2699 &column, &row, 0, 1); |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2700 |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2701 #ifndef USE_X_TOOLKIT |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2702 /* In the non-toolkit version, clicks on the menu bar |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2703 are ordinary button events in the event buffer. |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2704 Distinguish them, and invoke the menu. |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2705 |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2706 (In the toolkit version, the toolkit handles the menu bar |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2707 and Emacs doesn't know about it until after the user |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2708 makes a selection.) */ |
|
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2709 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)) |
|
5684
6479e0eabb27
* keyboard.c (make_lispy_event): Add USE_X_TOOLKIT conditional and
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents:
5674
diff
changeset
|
2710 { |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2711 Lisp_Object items, item; |
|
8169
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2712 int hpos; |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2713 int i; |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2714 |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2715 /* Activate the menu bar on the down event. If the |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2716 up event comes in before the menu code can deal with it, |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2717 just ignore it. */ |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2718 if (! (event->modifiers & down_modifier)) |
|
09a8da4ffadf
(make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents:
8089
diff
changeset
|
2719 return Qnil; |
|
6024
0aa565fdb1b9
(make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents:
6020
diff
changeset
|
2720 |
|
6812
ba2176fd811c
(make_lispy_event): Initialize item.
Karl Heuer <kwzh@gnu.org>
parents:
6805
diff
changeset
|
2721 item = Qnil; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2722 items = FRAME_MENU_BAR_ITEMS (f); |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2723 for (i = 0; i < XVECTOR (items)->size; i += 3) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2724 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2725 Lisp_Object pos, string; |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2726 string = XVECTOR (items)->contents[i + 1]; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2727 pos = XVECTOR (items)->contents[i + 2]; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2728 if (NILP (string)) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2729 break; |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2730 if (column >= XINT (pos) |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2731 && column < XINT (pos) + XSTRING (string)->size) |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2732 { |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2733 item = XVECTOR (items)->contents[i]; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2734 break; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2735 } |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2736 } |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2737 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2738 position |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2739 = Fcons (event->frame_or_window, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2740 Fcons (Qmenu_bar, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2741 Fcons (Fcons (event->x, event->y), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2742 Fcons (make_number (event->timestamp), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2743 Qnil)))); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2744 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
2745 return Fcons (item, Fcons (position, Qnil)); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2746 } |
|
10275
0231c0d38918
(make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents:
10233
diff
changeset
|
2747 #endif /* not USE_X_TOOLKIT */ |
|
6024
0aa565fdb1b9
(make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents:
6020
diff
changeset
|
2748 |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2749 window = window_from_coordinates (f, column, row, &part); |
|
6024
0aa565fdb1b9
(make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents:
6020
diff
changeset
|
2750 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
2751 if (!WINDOWP (window)) |
|
8432
ebb72cf97695
(make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents:
8418
diff
changeset
|
2752 { |
|
ebb72cf97695
(make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents:
8418
diff
changeset
|
2753 window = event->frame_or_window; |
|
ebb72cf97695
(make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents:
8418
diff
changeset
|
2754 posn = Qnil; |
|
ebb72cf97695
(make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents:
8418
diff
changeset
|
2755 } |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2756 else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2757 { |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2758 int pixcolumn, pixrow; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2759 column -= XINT (XWINDOW (window)->left); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2760 row -= XINT (XWINDOW (window)->top); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2761 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2762 XSETINT (event->x, pixcolumn); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2763 XSETINT (event->y, pixrow); |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2764 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2765 if (part == 1) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2766 posn = Qmode_line; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2767 else if (part == 2) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2768 posn = Qvertical_line; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2769 else |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2770 XSETINT (posn, |
|
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2771 buffer_posn_from_coords (XWINDOW (window), |
|
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2772 column, row)); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2773 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2774 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2775 position |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2776 = Fcons (window, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2777 Fcons (posn, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2778 Fcons (Fcons (event->x, event->y), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2779 Fcons (make_number (event->timestamp), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2780 Qnil)))); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2781 } |
| 518 | 2782 else |
| 2783 { | |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2784 Lisp_Object window; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2785 Lisp_Object portion_whole; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2786 Lisp_Object part; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2787 |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2788 window = event->frame_or_window; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2789 portion_whole = Fcons (event->x, event->y); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2790 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
|
2791 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2792 position = |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2793 Fcons (window, |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2794 Fcons (Qvertical_scroll_bar, |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2795 Fcons (portion_whole, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2796 Fcons (make_number (event->timestamp), |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2797 Fcons (part, Qnil))))); |
| 518 | 2798 } |
| 2799 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2800 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
|
2801 |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2802 start_pos = *start_pos_ptr; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2803 *start_pos_ptr = Qnil; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2804 |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2805 is_double = (button == last_mouse_button |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2806 && XINT (event->x) == last_mouse_x |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2807 && XINT (event->y) == last_mouse_y |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2808 && button_down_time != 0 |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2809 && (EQ (Vdouble_click_time, Qt) |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2810 || (INTEGERP (Vdouble_click_time) |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2811 && ((int)(event->timestamp - button_down_time) |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2812 < XINT (Vdouble_click_time))))); |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2813 last_mouse_button = button; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2814 last_mouse_x = XINT (event->x); |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2815 last_mouse_y = XINT (event->y); |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2816 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2817 /* 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
|
2818 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
|
2819 if (event->modifiers & down_modifier) |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2820 { |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2821 if (is_double) |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2822 { |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2823 double_click_count++; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2824 event->modifiers |= ((double_click_count > 2) |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2825 ? triple_modifier |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2826 : double_modifier); |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2827 } |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2828 else |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2829 double_click_count = 1; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2830 button_down_time = event->timestamp; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2831 *start_pos_ptr = Fcopy_alist (position); |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2832 } |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2833 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2834 /* 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
|
2835 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
|
2836 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
|
2837 { |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2838 /* 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
|
2839 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
|
2840 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
|
2841 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
|
2842 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
|
2843 as a separate event. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2844 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
2845 if (!CONSP (start_pos)) |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2846 return Qnil; |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2847 |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2848 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
|
2849 #if 0 /* Formerly we treated an up with no down as a click event. */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
2850 if (!CONSP (start_pos)) |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2851 event->modifiers |= click_modifier; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2852 else |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2853 #endif |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2854 { |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2855 /* 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
|
2856 pair. */ |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2857 Lisp_Object down; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2858 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2859 down = Fnth (make_number (2), start_pos); |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2860 if (EQ (event->x, XCONS (down)->car) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2861 && EQ (event->y, XCONS (down)->cdr)) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2862 { |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2863 event->modifiers |= click_modifier; |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2864 } |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2865 else |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2866 { |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
2867 button_down_time = 0; |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2868 event->modifiers |= drag_modifier; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2869 } |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2870 /* Don't check is_double; treat this as multiple |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2871 if the down-event was multiple. */ |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2872 if (double_click_count > 1) |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2873 event->modifiers |= ((double_click_count > 2) |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2874 ? triple_modifier |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
2875 : double_modifier); |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2876 } |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2877 } |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2878 else |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2879 /* 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
|
2880 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
|
2881 abort (); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2882 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2883 { |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2884 /* Get the symbol we should use for the mouse click. */ |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2885 Lisp_Object head; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2886 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2887 head = modify_event_symbol (button, |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2888 event->modifiers, |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2889 Qmouse_click, Qnil, |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2890 lispy_mouse_names, &mouse_syms, |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2891 (sizeof (lispy_mouse_names) |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2892 / sizeof (lispy_mouse_names[0]))); |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2893 if (event->modifiers & drag_modifier) |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2894 return Fcons (head, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2895 Fcons (start_pos, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2896 Fcons (position, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2897 Qnil))); |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2898 else if (event->modifiers & (double_modifier | triple_modifier)) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2899 return Fcons (head, |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2900 Fcons (position, |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2901 Fcons (make_number (double_click_count), |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
2902 Qnil))); |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2903 else |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2904 return Fcons (head, |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2905 Fcons (position, |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2906 Qnil)); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2907 } |
| 518 | 2908 } |
|
7224
a96533ce8122
(force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7168
diff
changeset
|
2909 #endif /* MULTI_FRAME or HAVE_MOUSE */ |
| 518 | 2910 |
| 2911 /* The 'kind' field of the event is something we don't recognize. */ | |
| 2912 default: | |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2913 abort (); |
| 518 | 2914 } |
| 2915 } | |
| 2916 | |
| 9572 | 2917 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE) |
|
6805
8310b2eb6b06
(make_lispy_movement): Conditionalize on MULTI_FRAME.
Richard M. Stallman <rms@gnu.org>
parents:
6749
diff
changeset
|
2918 |
| 518 | 2919 static Lisp_Object |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2920 make_lispy_movement (frame, bar_window, part, x, y, time) |
| 765 | 2921 FRAME_PTR frame; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2922 Lisp_Object bar_window; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2923 enum scroll_bar_part part; |
| 518 | 2924 Lisp_Object x, y; |
| 732 | 2925 unsigned long time; |
| 518 | 2926 { |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2927 #ifdef MULTI_FRAME |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2928 /* Is it a scroll bar movement? */ |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2929 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
|
2930 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2931 Lisp_Object part_sym; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2932 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
2933 part_sym = *scroll_bar_parts[(int) part]; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2934 return Fcons (Qscroll_bar_movement, |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2935 (Fcons (Fcons (bar_window, |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2936 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
|
2937 Fcons (Fcons (x, y), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2938 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
|
2939 Fcons (part_sym, |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2940 Qnil))))), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2941 Qnil))); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2942 } |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2943 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2944 /* Or is it an ordinary mouse movement? */ |
| 518 | 2945 else |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2946 #endif /* MULTI_FRAME */ |
| 518 | 2947 { |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2948 int area; |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2949 Lisp_Object window; |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2950 Lisp_Object posn; |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2951 int column, row; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2952 |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2953 #ifdef MULTI_FRAME |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2954 if (frame) |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2955 #else |
|
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2956 if (1) |
|
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2957 #endif |
|
7345
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2958 { |
|
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2959 /* It's in a frame; which window on that frame? */ |
|
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2960 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 1); |
|
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2961 window = window_from_coordinates (frame, column, row, &area); |
|
c107ec7641ec
(last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2962 } |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2963 else |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2964 window = Qnil; |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2965 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
2966 if (WINDOWP (window)) |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2967 { |
|
6053
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2968 int pixcolumn, pixrow; |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2969 column -= XINT (XWINDOW (window)->left); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2970 row -= XINT (XWINDOW (window)->top); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2971 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2972 XSETINT (x, pixcolumn); |
|
19d123e039fa
(make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents:
6024
diff
changeset
|
2973 XSETINT (y, pixrow); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2974 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2975 if (area == 1) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2976 posn = Qmode_line; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2977 else if (area == 2) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2978 posn = Qvertical_line; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2979 else |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2980 XSETINT (posn, |
|
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2981 buffer_posn_from_coords (XWINDOW (window), column, row)); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2982 } |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2983 #ifdef MULTI_FRAME |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2984 else if (frame != 0) |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2985 { |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
2986 XSETFRAME (window, frame); |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2987 posn = Qnil; |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
2988 } |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
2989 #endif |
| 518 | 2990 else |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2991 { |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2992 window = Qnil; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2993 posn = Qnil; |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
2994 XSETFASTINT (x, 0); |
|
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
2995 XSETFASTINT (y, 0); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2996 } |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2997 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2998 return Fcons (Qmouse_movement, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2999 Fcons (Fcons (window, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
3000 Fcons (posn, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
3001 Fcons (Fcons (x, y), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
3002 Fcons (make_number (time), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
3003 Qnil)))), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
3004 Qnil)); |
| 518 | 3005 } |
| 3006 } | |
| 3007 | |
|
8247
26dbb6234efd
(safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents:
8238
diff
changeset
|
3008 #endif /* neither MULTI_FRAME nor HAVE_MOUSE */ |
|
6805
8310b2eb6b06
(make_lispy_movement): Conditionalize on MULTI_FRAME.
Richard M. Stallman <rms@gnu.org>
parents:
6749
diff
changeset
|
3009 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3010 /* 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
|
3011 static Lisp_Object |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3012 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
|
3013 Lisp_Object frame; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3014 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3015 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
|
3016 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3017 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3018 /* Manipulating modifiers. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3019 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3020 /* 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
|
3021 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3022 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
|
3023 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
|
3024 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
|
3025 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3026 This doesn't use any caches. */ |
| 518 | 3027 static int |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3028 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
|
3029 Lisp_Object symbol; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3030 int *modifier_end; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3031 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3032 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
|
3033 int i; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3034 int modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3035 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3036 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
|
3037 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3038 modifiers = 0; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3039 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
|
3040 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3041 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3042 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
|
3043 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
|
3044 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3045 #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
|
3046 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
|
3047 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
|
3048 modifiers |= bit; \ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3049 i += 2; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3050 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3051 case 'A': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3052 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
|
3053 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3054 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3055 case 'C': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3056 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
|
3057 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3058 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3059 case 'H': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3060 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
|
3061 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3062 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3063 case 'M': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3064 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
|
3065 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3066 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3067 case 'S': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3068 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
|
3069 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3070 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3071 case 's': |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3072 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
|
3073 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3074 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3075 case 'd': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3076 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
|
3077 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
|
3078 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
|
3079 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3080 modifiers |= drag_modifier; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3081 i += 5; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3082 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3083 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
|
3084 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3085 modifiers |= down_modifier; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3086 i += 5; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3087 } |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3088 else if (i + 7 <= name->size |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3089 && ! strncmp (name->data + i, "double-", 7)) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3090 { |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3091 modifiers |= double_modifier; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3092 i += 7; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3093 } |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3094 else |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3095 goto no_more_modifiers; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3096 break; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3097 |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3098 case 't': |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3099 if (i + 7 > name->size) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3100 goto no_more_modifiers; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3101 if (! strncmp (name->data + i, "triple-", 7)) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3102 { |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3103 modifiers |= triple_modifier; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3104 i += 7; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3105 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3106 else |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3107 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
|
3108 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3109 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3110 default: |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3111 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
|
3112 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3113 #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
|
3114 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3115 no_more_modifiers: |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3116 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3117 /* Should we include the `click' modifier? */ |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3118 if (! (modifiers & (down_modifier | drag_modifier |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3119 | double_modifier | triple_modifier)) |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3120 && 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
|
3121 && 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
|
3122 && ('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
|
3123 modifiers |= click_modifier; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3124 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3125 if (modifier_end) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3126 *modifier_end = i; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3127 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3128 return modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3129 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3130 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3131 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3132 /* 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
|
3133 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
|
3134 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
|
3135 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3136 apply_modifiers_uncached (modifiers, base, base_len) |
| 518 | 3137 int modifiers; |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3138 char *base; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3139 int base_len; |
| 518 | 3140 { |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3141 /* 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
|
3142 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
|
3143 reference to it. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3144 char *new_mods = |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3145 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-")); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3146 int mod_len; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3147 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3148 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3149 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
|
3150 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3151 /* 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
|
3152 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
|
3153 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
|
3154 abort (); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3155 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3156 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
|
3157 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
|
3158 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
|
3159 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
|
3160 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
|
3161 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; } |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
3162 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; } |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
3163 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3164 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
|
3165 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
|
3166 /* 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
|
3167 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3168 *p = '\0'; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3169 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3170 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
|
3171 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3172 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3173 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3174 Lisp_Object new_name; |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3175 |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3176 new_name = make_uninit_string (mod_len + base_len); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3177 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
|
3178 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
|
3179 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3180 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
|
3181 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3182 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3183 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3184 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3185 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
|
3186 { |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
3187 "up", "down", "drag", "click", "double", "triple", 0, 0, |
|
2956
d25ffad42426
(modifier_names): Update to match *_modifier in termhooks.
Richard M. Stallman <rms@gnu.org>
parents:
2954
diff
changeset
|
3188 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
|
3189 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
|
3190 }; |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3191 #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
|
3192 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3193 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
|
3194 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3195 /* 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
|
3196 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3197 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
|
3198 int modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3199 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3200 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
|
3201 int i; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3202 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3203 modifier_list = Qnil; |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3204 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
|
3205 if (modifiers & (1<<i)) |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3206 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i], |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3207 modifier_list); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3208 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3209 return modifier_list; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3210 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3211 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3212 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3213 /* 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
|
3214 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
|
3215 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
|
3216 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
|
3217 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
|
3218 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
|
3219 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3220 parse_modifiers (symbol) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3221 Lisp_Object symbol; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3222 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3223 Lisp_Object elements; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3224 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3225 elements = Fget (symbol, Qevent_symbol_element_mask); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3226 if (CONSP (elements)) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3227 return elements; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3228 else |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3229 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3230 int end; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3231 int modifiers = parse_modifiers_uncached (symbol, &end); |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3232 Lisp_Object unmodified; |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3233 Lisp_Object mask; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3234 |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3235 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end, |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3236 XSYMBOL (symbol)->name->size - end), |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3237 Qnil); |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3238 |
|
2436
80aafda1127b
* keyboard.c (parse_modifiers, apply_modifiers): Make sure we're
Jim Blandy <jimb@redhat.com>
parents:
2434
diff
changeset
|
3239 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
|
3240 abort (); |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
3241 XSETFASTINT (mask, modifiers); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3242 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
|
3243 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3244 /* 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
|
3245 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
|
3246 elements); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3247 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
|
3248 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
|
3249 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3250 /* 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
|
3251 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
|
3252 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
|
3253 canonical. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3254 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3255 return elements; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3256 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3257 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3258 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3259 /* 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
|
3260 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
|
3261 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3262 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
|
3263 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
|
3264 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
|
3265 |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3266 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
|
3267 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
|
3268 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3269 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
|
3270 int modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3271 Lisp_Object base; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3272 { |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3273 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
|
3274 |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3275 /* 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
|
3276 modifiers &= (1<<VALBITS) - 1; |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3277 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3278 /* 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
|
3279 cache = Fget (base, Qmodifier_cache); |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
3280 XSETFASTINT (index, (modifiers & ~click_modifier)); |
|
7999
f1837249c67f
(apply_modifiers): Use assq_no_quit.
Richard M. Stallman <rms@gnu.org>
parents:
7957
diff
changeset
|
3281 entry = assq_no_quit (index, cache); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3282 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3283 if (CONSP (entry)) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3284 new_symbol = XCONS (entry)->cdr; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3285 else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3286 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3287 /* We have to create the symbol ourselves. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3288 new_symbol = apply_modifiers_uncached (modifiers, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3289 XSYMBOL (base)->name->data, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3290 XSYMBOL (base)->name->size); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3291 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3292 /* 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
|
3293 entry = Fcons (index, new_symbol); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3294 Fput (base, Qmodifier_cache, Fcons (entry, cache)); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3295 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3296 /* We have the parsing info now for free, so add it to the caches. */ |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
3297 XSETFASTINT (index, modifiers); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3298 Fput (new_symbol, Qevent_symbol_element_mask, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3299 Fcons (base, Fcons (index, Qnil))); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3300 Fput (new_symbol, Qevent_symbol_elements, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3301 Fcons (base, lispy_modifier_list (modifiers))); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3302 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3303 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3304 /* 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
|
3305 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3306 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
|
3307 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
|
3308 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
|
3309 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
|
3310 Qevent_kind set right as well. */ |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3311 if (NILP (Fget (new_symbol, Qevent_kind))) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3312 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3313 Lisp_Object kind; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3314 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3315 kind = Fget (base, Qevent_kind); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3316 if (! NILP (kind)) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3317 Fput (new_symbol, Qevent_kind, kind); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3318 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3319 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3320 return new_symbol; |
| 518 | 3321 } |
| 3322 | |
| 3323 | |
| 3324 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc), | |
| 3325 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
|
3326 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
|
3327 always come last. The 'click' modifier is never written out. |
| 518 | 3328 |
| 3329 Fdefine_key calls this to make sure that (for example) C-M-foo | |
| 3330 and M-C-foo end up being equivalent in the keymap. */ | |
| 3331 | |
| 3332 Lisp_Object | |
| 3333 reorder_modifiers (symbol) | |
| 3334 Lisp_Object symbol; | |
| 3335 { | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3336 /* 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
|
3337 will soon be in caches, and no consing will be done at all. */ |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3338 Lisp_Object parsed; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3339 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
3340 parsed = parse_modifiers (symbol); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3341 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
|
3342 XCONS (parsed)->car); |
| 518 | 3343 } |
| 3344 | |
| 3345 | |
| 3346 /* For handling events, we often want to produce a symbol whose name | |
| 3347 is a series of modifier key prefixes ("M-", "C-", etcetera) attached | |
| 3348 to some base, like the name of a function key or mouse button. | |
| 3349 modify_event_symbol produces symbols of this sort. | |
| 3350 | |
| 3351 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i] | |
| 3352 is the name of the i'th symbol. TABLE_SIZE is the number of elements | |
| 3353 in the table. | |
| 3354 | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3355 Alternatively, NAME_ALIST is an alist mapping codes into symbol names. |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3356 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used. |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3357 |
| 518 | 3358 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will |
| 3359 persist between calls to modify_event_symbol that it can use to | |
| 3360 store a cache of the symbols it's generated for this NAME_TABLE | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3361 before. The object stored there may be a vector or an alist. |
| 518 | 3362 |
| 3363 SYMBOL_NUM is the number of the base name we want from NAME_TABLE. | |
| 3364 | |
| 3365 MODIFIERS is a set of modifier bits (as given in struct input_events) | |
| 3366 whose prefixes should be applied to the symbol name. | |
| 3367 | |
| 3368 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
|
3369 the returned symbol. |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3370 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3371 The symbols we create are supposed to have an |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3538
diff
changeset
|
3372 `event-symbol-elements' property, which lists the modifiers present |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3373 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
|
3374 |
| 518 | 3375 static Lisp_Object |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3376 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist, |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3377 name_table, symbol_table, table_size) |
| 518 | 3378 int symbol_num; |
| 3379 unsigned modifiers; | |
| 3380 Lisp_Object symbol_kind; | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3381 Lisp_Object name_alist; |
| 518 | 3382 char **name_table; |
| 3383 Lisp_Object *symbol_table; | |
| 3384 int table_size; | |
| 3385 { | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3386 Lisp_Object value; |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3387 Lisp_Object symbol_int; |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3388 |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
3389 XSETINT (symbol_int, symbol_num); |
| 518 | 3390 |
| 3391 /* 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
|
3392 if (symbol_num < 0 || symbol_num >= table_size) |
|
7807
cd93cee36101
(modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents:
7787
diff
changeset
|
3393 return Qnil; |
| 518 | 3394 |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3395 if (CONSP (*symbol_table)) |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3396 value = Fcdr (assq_no_quit (symbol_int, *symbol_table)); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3397 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3398 /* 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
|
3399 *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
|
3400 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
|
3401 we've never used that symbol before. */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3402 else |
| 518 | 3403 { |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3404 if (! VECTORP (*symbol_table) |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3405 || XVECTOR (*symbol_table)->size != table_size) |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3406 { |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3407 Lisp_Object size; |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3408 |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
3409 XSETFASTINT (size, table_size); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3410 *symbol_table = Fmake_vector (size, Qnil); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3411 } |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3412 |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3413 value = XVECTOR (*symbol_table)->contents[symbol_num]; |
| 518 | 3414 } |
| 3415 | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3416 /* Have we already used this symbol before? */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3417 if (NILP (value)) |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3418 { |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3419 /* No; let's create it. */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3420 if (!NILP (name_alist)) |
|
6894
34435700529d
(modify_event_symbol): Use the cdr of the alist entry.
Richard M. Stallman <rms@gnu.org>
parents:
6893
diff
changeset
|
3421 value = Fcdr_safe (Fassq (symbol_int, name_alist)); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3422 else if (name_table[symbol_num]) |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3423 value = intern (name_table[symbol_num]); |
|
6894
34435700529d
(modify_event_symbol): Use the cdr of the alist entry.
Richard M. Stallman <rms@gnu.org>
parents:
6893
diff
changeset
|
3424 |
|
34435700529d
(modify_event_symbol): Use the cdr of the alist entry.
Richard M. Stallman <rms@gnu.org>
parents:
6893
diff
changeset
|
3425 if (NILP (value)) |
|
3042
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
3426 { |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
3427 char buf[20]; |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
3428 sprintf (buf, "key-%d", symbol_num); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3429 value = intern (buf); |
|
3042
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
3430 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3431 |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3432 if (CONSP (*symbol_table)) |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3433 *symbol_table = Fcons (value, *symbol_table); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3434 else |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3435 XVECTOR (*symbol_table)->contents[symbol_num] = value; |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3436 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3437 /* 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
|
3438 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
|
3439 cares about. */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3440 apply_modifiers (modifiers & click_modifier, value); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3441 Fput (value, Qevent_kind, symbol_kind); |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3442 } |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3443 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3444 /* Apply modifiers to that symbol. */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3445 return apply_modifiers (modifiers, value); |
| 518 | 3446 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3447 |
| 518 | 3448 |
| 3449 /* Store into *addr a value nonzero if terminal input chars are available. | |
| 3450 Serves the purpose of ioctl (0, FIONREAD, addr) | |
| 3451 but works even if FIONREAD does not exist. | |
| 3452 (In fact, this may actually read some input.) */ | |
| 3453 | |
| 3454 static void | |
| 3455 get_input_pending (addr) | |
| 3456 int *addr; | |
| 3457 { | |
| 3458 /* First of all, have we already counted some input? */ | |
| 3459 *addr = !NILP (Vquit_flag) || readable_events (); | |
| 3460 | |
| 3461 /* If input is being read as it arrives, and we have none, there is none. */ | |
| 3462 if (*addr > 0 || (interrupt_input && ! interrupts_deferred)) | |
| 3463 return; | |
| 3464 | |
| 3465 /* Try to read some input and see how much we get. */ | |
| 3466 gobble_input (0); | |
| 3467 *addr = !NILP (Vquit_flag) || readable_events (); | |
| 3468 } | |
| 3469 | |
|
8727
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3470 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */ |
| 518 | 3471 |
| 3472 int | |
| 3473 gobble_input (expected) | |
| 3474 int expected; | |
| 3475 { | |
| 3476 #ifndef VMS | |
| 3477 #ifdef SIGIO | |
| 3478 if (interrupt_input) | |
| 3479 { | |
| 624 | 3480 SIGMASKTYPE mask; |
| 638 | 3481 mask = sigblockx (SIGIO); |
| 518 | 3482 read_avail_input (expected); |
| 638 | 3483 sigsetmask (mask); |
| 518 | 3484 } |
| 3485 else | |
|
8727
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3486 #ifdef POLL_FOR_INPUT |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3487 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0) |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3488 { |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3489 SIGMASKTYPE mask; |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3490 mask = sigblockx (SIGALRM); |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3491 read_avail_input (expected); |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3492 sigsetmask (mask); |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3493 } |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3494 else |
|
592bbf02e29d
(gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents:
8718
diff
changeset
|
3495 #endif |
| 9572 | 3496 #endif |
| 518 | 3497 read_avail_input (expected); |
| 3498 #endif | |
| 3499 } | |
|
6749
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3500 |
|
7225
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3501 /* Put a buffer_switch_event in the buffer |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3502 so that read_key_sequence will notice the new current buffer. */ |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3503 |
|
6749
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3504 record_asynch_buffer_change () |
|
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3505 { |
|
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3506 struct input_event event; |
|
8502
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3507 Lisp_Object tem; |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3508 |
|
6749
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3509 event.kind = buffer_switch_event; |
|
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3510 event.frame_or_window = Qnil; |
|
7225
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3511 |
|
8718
44a433fa6e8f
(record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents:
8673
diff
changeset
|
3512 #ifdef subprocesses |
|
8502
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3513 /* We don't need a buffer-switch event unless Emacs is waiting for input. |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3514 The purpose of the event is to make read_key_sequence look up the |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3515 keymaps again. If we aren't in read_key_sequence, we don't need one, |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3516 and the event could cause trouble by messing up (input-pending-p). */ |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3517 tem = Fwaiting_for_user_input_p (); |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3518 if (NILP (tem)) |
|
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3519 return; |
|
8718
44a433fa6e8f
(record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents:
8673
diff
changeset
|
3520 #else |
|
44a433fa6e8f
(record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents:
8673
diff
changeset
|
3521 /* We never need these events if we have no asynchronous subprocesses. */ |
|
44a433fa6e8f
(record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents:
8673
diff
changeset
|
3522 return; |
|
44a433fa6e8f
(record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents:
8673
diff
changeset
|
3523 #endif |
|
8502
0d7af9e98916
(record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents:
8432
diff
changeset
|
3524 |
|
7225
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3525 /* Make sure no interrupt happens while storing the event. */ |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3526 #ifdef SIGIO |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3527 if (interrupt_input) |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3528 { |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3529 SIGMASKTYPE mask; |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3530 mask = sigblockx (SIGIO); |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3531 kbd_buffer_store_event (&event); |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3532 sigsetmask (mask); |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3533 } |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3534 else |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3535 #endif |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3536 { |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3537 stop_polling (); |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3538 kbd_buffer_store_event (&event); |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3539 start_polling (); |
|
420c92074bd6
(record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
7224
diff
changeset
|
3540 } |
|
6749
c409eb264509
(kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents:
6461
diff
changeset
|
3541 } |
| 518 | 3542 |
| 3543 #ifndef VMS | |
| 3544 | |
| 3545 /* Read any terminal input already buffered up by the system | |
| 3546 into the kbd_buffer, but do not wait. | |
| 3547 | |
| 3548 EXPECTED should be nonzero if the caller knows there is some input. | |
| 3549 | |
| 3550 Except on VMS, all input is read by this function. | |
| 3551 If interrupt_input is nonzero, this function MUST be called | |
| 3552 only when SIGIO is blocked. | |
| 3553 | |
| 3554 Returns the number of keyboard chars read, or -1 meaning | |
| 3555 this is a bad time to try to read input. */ | |
| 3556 | |
| 3557 static int | |
| 3558 read_avail_input (expected) | |
| 3559 int expected; | |
| 3560 { | |
| 3561 struct input_event buf[KBD_BUFFER_SIZE]; | |
| 3562 register int i; | |
| 3563 int nread; | |
| 3564 | |
| 3565 if (read_socket_hook) | |
| 3566 /* No need for FIONREAD or fcntl; just say don't wait. */ | |
|
9652
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
3567 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, |
|
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
3568 expected, expected); |
| 518 | 3569 else |
| 3570 { | |
|
5032
2802aff49c77
(read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents:
4996
diff
changeset
|
3571 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than |
|
2802aff49c77
(read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents:
4996
diff
changeset
|
3572 the kbd_buffer can really hold. That may prevent loss |
|
2802aff49c77
(read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents:
4996
diff
changeset
|
3573 of characters on some systems when input is stuffed at us. */ |
|
2802aff49c77
(read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents:
4996
diff
changeset
|
3574 unsigned char cbuf[KBD_BUFFER_SIZE - 1]; |
|
6875
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3575 int n_to_read; |
|
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3576 |
|
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3577 /* Determine how many characters we should *try* to read. */ |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
3578 #ifdef WINDOWSNT |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
3579 return 0; |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
3580 #else /* not WINDOWSNT */ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3581 #ifdef MSDOS |
|
6875
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3582 n_to_read = dos_keysns (); |
|
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3583 if (n_to_read == 0) |
|
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3584 return 0; |
|
6891
065060f1f9b8
(read_avail_input): Fix comment delimiter.
Karl Heuer <kwzh@gnu.org>
parents:
6875
diff
changeset
|
3585 #else /* not MSDOS */ |
| 518 | 3586 #ifdef FIONREAD |
| 3587 /* Find out how much input is available. */ | |
|
9652
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
3588 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0) |
| 518 | 3589 /* Formerly simply reported no input, but that sometimes led to |
| 3590 a failure of Emacs to terminate. | |
| 3591 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
|
3592 /* ??? 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
|
3593 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
|
3594 Perhaps on systems with FIONREAD Emacs is alone in its group. */ |
| 518 | 3595 kill (getpid (), SIGHUP); |
|
6875
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3596 if (n_to_read == 0) |
| 518 | 3597 return 0; |
|
6875
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3598 if (n_to_read > sizeof cbuf) |
|
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3599 n_to_read = sizeof cbuf; |
| 518 | 3600 #else /* no FIONREAD */ |
|
4996
4414ceac33dc
(read_avail_input) [no FIONREAD]: On DGUX, as on USG,
Richard M. Stallman <rms@gnu.org>
parents:
4988
diff
changeset
|
3601 #if defined(USG) || defined(DGUX) |
| 518 | 3602 /* Read some input if available, but don't wait. */ |
|
6875
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3603 n_to_read = sizeof cbuf; |
|
9652
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
3604 fcntl (input_fd, F_SETFL, O_NDELAY); |
| 518 | 3605 #else |
| 3606 you lose; | |
| 3607 #endif | |
| 3608 #endif | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3609 #endif /* not MSDOS */ |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
3610 #endif /* not WINDOWSNT */ |
| 518 | 3611 |
|
6875
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3612 /* Now read; for one reason or another, this will not block. |
|
1862df471cac
(make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents:
6812
diff
changeset
|
3613 NREAD is set to the number of chars read. */ |
|
6963
67b16a9f7e5d
(read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents:
6936
diff
changeset
|
3614 do |
| 518 | 3615 { |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3616 #ifdef MSDOS |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3617 cbuf[0] = dos_keyread(); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3618 nread = 1; |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3619 #else |
|
9652
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
3620 nread = read (input_fd, cbuf, n_to_read); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3621 #endif |
|
6936
5538df04e96a
(read_avail_input): Test both aix386 and _BSD.
Richard M. Stallman <rms@gnu.org>
parents:
6932
diff
changeset
|
3622 #if defined (AIX) && (! defined (aix386) && defined (_BSD)) |
| 518 | 3623 /* The kernel sometimes fails to deliver SIGHUP for ptys. |
| 3624 This looks incorrect, but it isn't, because _BSD causes | |
| 3625 O_NDELAY to be defined in fcntl.h as O_NONBLOCK, | |
| 3626 and that causes a value other than 0 when there is no input. */ | |
|
5194
85a1088ca765
(kbd_buffer_get_event): If user destroys the last frame,
Richard M. Stallman <rms@gnu.org>
parents:
5178
diff
changeset
|
3627 if (nread == 0) |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3628 kill (0, SIGHUP); |
| 518 | 3629 #endif |
|
6963
67b16a9f7e5d
(read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents:
6936
diff
changeset
|
3630 } |
|
6972
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3631 while ( |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3632 /* We used to retry the read if it was interrupted. |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3633 But this does the wrong thing when O_NDELAY causes |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3634 an EAGAIN error. Does anybody know of a situation |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3635 where a retry is actually needed? */ |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3636 #if 0 |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3637 nread < 0 && (errno == EAGAIN |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3638 #ifdef EFAULT |
|
6963
67b16a9f7e5d
(read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents:
6936
diff
changeset
|
3639 || errno == EFAULT |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
3640 #endif |
| 518 | 3641 #ifdef EBADSLT |
|
6963
67b16a9f7e5d
(read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents:
6936
diff
changeset
|
3642 || errno == EBADSLT |
| 518 | 3643 #endif |
|
6972
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3644 ) |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3645 #else |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3646 0 |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3647 #endif |
|
2238e97bc571
(read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents:
6968
diff
changeset
|
3648 ); |
| 518 | 3649 |
| 3650 #ifndef FIONREAD | |
|
5371
63aa7b7e42c5
(read_avail_input): Turn O_NDELAY off on DGUX as on USG.
Richard M. Stallman <rms@gnu.org>
parents:
5352
diff
changeset
|
3651 #if defined (USG) || defined (DGUX) |
|
9652
13a13988685a
(read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents:
9618
diff
changeset
|
3652 fcntl (input_fd, F_SETFL, 0); |
|
5371
63aa7b7e42c5
(read_avail_input): Turn O_NDELAY off on DGUX as on USG.
Richard M. Stallman <rms@gnu.org>
parents:
5352
diff
changeset
|
3653 #endif /* USG or DGUX */ |
| 518 | 3654 #endif /* no FIONREAD */ |
| 3655 for (i = 0; i < nread; i++) | |
| 3656 { | |
| 3657 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
|
3658 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
|
3659 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
|
3660 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
|
3661 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
|
3662 cbuf[i] &= ~0x80; |
|
9745
129ec4acc4ff
(read_avail_input): Fix Lisp_Object vs. int problem.
Karl Heuer <kwzh@gnu.org>
parents:
9729
diff
changeset
|
3663 |
|
129ec4acc4ff
(read_avail_input): Fix Lisp_Object vs. int problem.
Karl Heuer <kwzh@gnu.org>
parents:
9729
diff
changeset
|
3664 buf[i].code = cbuf[i]; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3665 #ifdef MULTI_FRAME |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
3666 XSETFRAME (buf[i].frame_or_window, selected_frame); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3667 #else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3668 buf[i].frame_or_window = Qnil; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3669 #endif |
| 518 | 3670 } |
| 3671 } | |
| 3672 | |
| 3673 /* Scan the chars for C-g and store them in kbd_buffer. */ | |
| 3674 for (i = 0; i < nread; i++) | |
| 3675 { | |
| 3676 kbd_buffer_store_event (&buf[i]); | |
| 3677 /* Don't look at input that follows a C-g too closely. | |
| 3678 This reduces lossage due to autorepeat on C-g. */ | |
| 3679 if (buf[i].kind == ascii_keystroke | |
|
8938
16c1ca187613
(kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents:
8936
diff
changeset
|
3680 && buf[i].code == quit_char) |
| 518 | 3681 break; |
| 3682 } | |
| 3683 | |
| 3684 return nread; | |
| 3685 } | |
| 3686 #endif /* not VMS */ | |
| 3687 | |
| 3688 #ifdef SIGIO /* for entire page */ | |
| 3689 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 3690 | |
|
1119
5d315d54b8b4
* keyboard.c (kbd_buffer_get_event): When performing the
Jim Blandy <jimb@redhat.com>
parents:
1104
diff
changeset
|
3691 SIGTYPE |
| 518 | 3692 input_available_signal (signo) |
| 3693 int signo; | |
| 3694 { | |
| 3695 /* Must preserve main program's value of errno. */ | |
| 3696 int old_errno = errno; | |
| 3697 #ifdef BSD4_1 | |
| 3698 extern int select_alarmed; | |
| 3699 #endif | |
| 3700 | |
| 3701 #ifdef USG | |
| 3702 /* USG systems forget handlers when they are used; | |
| 3703 must reestablish each time */ | |
| 3704 signal (signo, input_available_signal); | |
| 3705 #endif /* USG */ | |
| 3706 | |
| 3707 #ifdef BSD4_1 | |
| 3708 sigisheld (SIGIO); | |
| 3709 #endif | |
| 3710 | |
| 648 | 3711 if (input_available_clear_time) |
| 3712 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); | |
| 518 | 3713 |
| 3714 while (1) | |
| 3715 { | |
| 3716 int nread; | |
| 3717 nread = read_avail_input (1); | |
| 3718 /* -1 means it's not ok to read the input now. | |
| 3719 UNBLOCK_INPUT will read it later; now, avoid infinite loop. | |
| 3720 0 means there was no keyboard input available. */ | |
| 3721 if (nread <= 0) | |
| 3722 break; | |
| 3723 | |
| 3724 #ifdef BSD4_1 | |
| 3725 select_alarmed = 1; /* Force the select emulator back to life */ | |
| 3726 #endif | |
| 3727 } | |
| 3728 | |
| 3729 #ifdef BSD4_1 | |
| 3730 sigfree (); | |
| 3731 #endif | |
| 3732 errno = old_errno; | |
| 3733 } | |
| 3734 #endif /* SIGIO */ | |
|
2726
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3735 |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3736 /* Send ourselves a SIGIO. |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3737 |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3738 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
|
3739 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
|
3740 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
|
3741 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
|
3742 void |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3743 reinvoke_input_signal () |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3744 { |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3745 #ifdef SIGIO |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3746 kill (0, SIGIO); |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3747 #endif |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3748 } |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3749 |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3750 |
| 518 | 3751 |
| 3752 /* Return the prompt-string of a sparse keymap. | |
| 3753 This is the first element which is a string. | |
| 3754 Return nil if there is none. */ | |
| 3755 | |
| 3756 Lisp_Object | |
| 3757 map_prompt (map) | |
| 3758 Lisp_Object map; | |
| 3759 { | |
| 3760 while (CONSP (map)) | |
| 3761 { | |
| 3762 register Lisp_Object tem; | |
| 3763 tem = Fcar (map); | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3764 if (STRINGP (tem)) |
| 518 | 3765 return tem; |
| 3766 map = Fcdr (map); | |
| 3767 } | |
| 3768 return Qnil; | |
| 3769 } | |
| 3770 | |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3771 static void menu_bar_item (); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3772 static void menu_bar_one_keymap (); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3773 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3774 /* These variables hold the vector under construction within |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3775 menu_bar_items and its subroutines, and the current index |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3776 for storing into that vector. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3777 static Lisp_Object menu_bar_items_vector; |
|
8938
16c1ca187613
(kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents:
8936
diff
changeset
|
3778 static int menu_bar_items_index; |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3779 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3780 /* Return a vector of menu items for a menu bar, appropriate |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3781 to the current buffer. Each item has three elements in the vector: |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
3782 KEY STRING MAPLIST. |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3783 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3784 OLD is an old vector we can optionally reuse, or nil. */ |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3785 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3786 Lisp_Object |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3787 menu_bar_items (old) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3788 Lisp_Object old; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3789 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3790 /* 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
|
3791 keymaps we have allocated space for. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3792 int nmaps; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3793 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3794 /* 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
|
3795 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
|
3796 Lisp_Object *maps; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3797 |
|
4115
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
3798 Lisp_Object def, tem, tail; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3799 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3800 Lisp_Object result; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3801 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3802 int mapno; |
|
3255
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3803 Lisp_Object oquit; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3804 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3805 int i; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3806 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3807 struct gcpro gcpro1; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3808 |
|
3209
1166db56c752
* keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents:
3174
diff
changeset
|
3809 /* 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
|
3810 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
|
3811 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
|
3812 quitting while building the menus. |
|
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3813 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
|
3814 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
|
3815 oquit = Vinhibit_quit; |
|
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3816 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
|
3817 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3818 if (!NILP (old)) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3819 menu_bar_items_vector = old; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3820 else |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3821 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3822 menu_bar_items_index = 0; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3823 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3824 GCPRO1 (menu_bar_items_vector); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3825 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3826 /* Build our list of keymaps. |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3827 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
|
3828 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
|
3829 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
|
3830 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
|
3831 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3832 Lisp_Object *tmaps; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3833 |
|
9607
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3834 /* Should overriding-local-map apply, here? */ |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3835 if (!NILP (Voverriding_local_map_menu_flag)) |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3836 { |
|
9607
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3837 if (NILP (Voverriding_local_map)) |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3838 { |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3839 /* Yes, and it is nil. Use just global map. */ |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3840 nmaps = 1; |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3841 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0])); |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3842 } |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3843 else |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3844 { |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3845 /* Yes, and it is non-nil. Use it and the global map. */ |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3846 nmaps = 2; |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3847 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0])); |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3848 maps[0] = Voverriding_local_map; |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3849 } |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3850 } |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3851 else |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3852 { |
|
9607
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3853 /* No, so use major and minor mode keymaps. */ |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3854 nmaps = current_minor_maps (0, &tmaps) + 2; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3855 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0])); |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3856 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0])); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3857 #ifdef USE_TEXT_PROPERTIES |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3858 maps[nmaps-2] = get_local_map (PT, current_buffer); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3859 #else |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3860 maps[nmaps-2] = current_buffer->keymap; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3861 #endif |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
3862 } |
|
3887
d8eb17d07558
* keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents:
3861
diff
changeset
|
3863 maps[nmaps-1] = current_global_map; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3864 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3865 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3866 /* 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
|
3867 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3868 result = Qnil; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3869 |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
3870 for (mapno = nmaps - 1; mapno >= 0; mapno--) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3871 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3872 if (! NILP (maps[mapno])) |
|
3748
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
3873 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0)); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3874 else |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3875 def = Qnil; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3876 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3877 tem = Fkeymapp (def); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3878 if (!NILP (tem)) |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3879 menu_bar_one_keymap (def); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3880 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3881 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3882 /* Move to the end those items that should be at the end. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3883 |
|
4115
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
3884 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr) |
|
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
3885 { |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3886 int i; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3887 int end = menu_bar_items_index; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3888 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3889 for (i = 0; i < end; i += 3) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3890 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i])) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3891 { |
|
6159
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3892 Lisp_Object tem0, tem1, tem2; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3893 /* Move the item at index I to the end, |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3894 shifting all the others forward. */ |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3895 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0]; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3896 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1]; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3897 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2]; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3898 if (end > i + 3) |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3899 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3], |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3900 &XVECTOR (menu_bar_items_vector)->contents[i], |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3901 (end - i - 3) * sizeof (Lisp_Object)); |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3902 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3903 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3904 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2; |
|
78275962ef1e
(menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents:
6135
diff
changeset
|
3905 break; |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3906 } |
|
4115
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
3907 } |
|
4088
bea0be5ab35e
(Vhelp_menu_bar_map): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4065
diff
changeset
|
3908 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3909 /* Add nil, nil, nil at the end. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3910 i = menu_bar_items_index; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3911 if (i + 3 > XVECTOR (menu_bar_items_vector)->size) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3912 { |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3913 Lisp_Object tem; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3914 int newsize = 2 * i; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3915 tem = Fmake_vector (make_number (2 * i), Qnil); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3916 bcopy (XVECTOR (menu_bar_items_vector)->contents, |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3917 XVECTOR (tem)->contents, i * sizeof (Lisp_Object)); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3918 menu_bar_items_vector = tem; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3919 } |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3920 /* Add this item. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3921 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3922 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3923 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3924 menu_bar_items_index = i; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3925 |
|
3255
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3926 Vinhibit_quit = oquit; |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3927 UNGCPRO; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3928 return menu_bar_items_vector; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3929 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3930 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3931 /* Scan one map KEYMAP, accumulating any menu items it defines |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
3932 in menu_bar_items_vector. */ |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3933 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3934 static void |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3935 menu_bar_one_keymap (keymap) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3936 Lisp_Object keymap; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3937 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3938 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
|
3939 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3940 /* Loop over all keymap entries that have menu strings. */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3941 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3942 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3943 item = XCONS (tail)->car; |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3944 if (CONSP (item)) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3945 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3946 key = XCONS (item)->car; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3947 binding = XCONS (item)->cdr; |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3948 if (CONSP (binding)) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3949 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3950 item_string = XCONS (binding)->car; |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3951 if (STRINGP (item_string)) |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3952 menu_bar_item (key, item_string, Fcdr (binding)); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3953 } |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
3954 else if (EQ (binding, Qundefined)) |
| 7650 | 3955 menu_bar_item (key, Qnil, binding); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3956 } |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3957 else if (VECTORP (item)) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3958 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3959 /* 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
|
3960 int len = XVECTOR (item)->size; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3961 int c; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3962 for (c = 0; c < len; c++) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3963 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3964 Lisp_Object character; |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
3965 XSETFASTINT (character, c); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3966 binding = XVECTOR (item)->contents[c]; |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3967 if (CONSP (binding)) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3968 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3969 item_string = XCONS (binding)->car; |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
3970 if (STRINGP (item_string)) |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3971 menu_bar_item (key, item_string, Fcdr (binding)); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3972 } |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
3973 else if (EQ (binding, Qundefined)) |
| 7650 | 3974 menu_bar_item (key, Qnil, binding); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3975 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3976 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3977 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3978 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3979 |
|
5808
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3980 /* This is used as the handler when calling internal_condition_case_1. */ |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3981 |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3982 static Lisp_Object |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3983 menu_bar_item_1 (arg) |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3984 Lisp_Object arg; |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3985 { |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3986 return Qnil; |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3987 } |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
3988 |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
3989 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF. |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
3990 If there's already an item for KEY, add this DEF to it. */ |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
3991 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3992 static void |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3993 menu_bar_item (key, item_string, def) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3994 Lisp_Object key, item_string, def; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3995 { |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
3996 Lisp_Object tem; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3997 Lisp_Object enabled; |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
3998 int i; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3999 |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
4000 if (EQ (def, Qundefined)) |
|
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
4001 { |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4002 /* If a map has an explicit `undefined' as definition, |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
4003 discard any previously made menu bar item. */ |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4004 |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4005 for (i = 0; i < menu_bar_items_index; i += 3) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4006 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i])) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4007 { |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4008 if (menu_bar_items_index > i + 3) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4009 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3], |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4010 &XVECTOR (menu_bar_items_vector)->contents[i], |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4011 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object)); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4012 menu_bar_items_index -= 3; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4013 return; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4014 } |
| 7650 | 4015 |
| 4016 /* If there's no definition for this key yet, | |
| 4017 just ignore `undefined'. */ | |
| 4018 return; | |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
4019 } |
|
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
4020 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4021 /* See if this entry is enabled. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4022 enabled = Qt; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4023 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4024 if (SYMBOLP (def)) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4025 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4026 /* No property, or nil, means enable. |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4027 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
|
4028 tem = Fget (def, Qmenu_enable); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4029 if (!NILP (tem)) |
|
5808
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
4030 /* (condition-case nil (eval tem) |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
4031 (error nil)) */ |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
4032 enabled = internal_condition_case_1 (Feval, tem, Qerror, |
|
995860e5f342
(menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents:
5779
diff
changeset
|
4033 menu_bar_item_1); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4034 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4035 |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4036 /* Ignore this item if it's not enabled. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4037 if (NILP (enabled)) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4038 return; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4039 |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4040 /* Find any existing item for this KEY. */ |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4041 for (i = 0; i < menu_bar_items_index; i += 3) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4042 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i])) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4043 break; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4044 |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4045 /* If we did not find this KEY, add it at the end. */ |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4046 if (i == menu_bar_items_index) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4047 { |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4048 /* If vector is too small, get a bigger one. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4049 if (i + 3 > XVECTOR (menu_bar_items_vector)->size) |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4050 { |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4051 Lisp_Object tem; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4052 int newsize = 2 * i; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4053 tem = Fmake_vector (make_number (2 * i), Qnil); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4054 bcopy (XVECTOR (menu_bar_items_vector)->contents, |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4055 XVECTOR (tem)->contents, i * sizeof (Lisp_Object)); |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4056 menu_bar_items_vector = tem; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4057 } |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4058 /* Add this item. */ |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4059 XVECTOR (menu_bar_items_vector)->contents[i++] = key; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4060 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string; |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4061 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil); |
|
6135
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4062 menu_bar_items_index = i; |
|
bfe9f873bd64
(menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents:
6101
diff
changeset
|
4063 } |
|
7098
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4064 /* We did find an item for this KEY. Add DEF to its list of maps. */ |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4065 else |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4066 { |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4067 Lisp_Object old; |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4068 old = XVECTOR (menu_bar_items_vector)->contents[i + 2]; |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4069 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old); |
|
9e9d5db094b5
(menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents:
6972
diff
changeset
|
4070 } |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4071 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4072 |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4073 /* Read a character using menus based on maps in the array MAPS. |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4074 NMAPS is the length of MAPS. Return nil if there are no menus in the maps. |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4075 Return t if we displayed a menu but the user rejected it. |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4076 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4077 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
|
4078 the first event of a key sequence. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4079 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
4080 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
|
4081 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
|
4082 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone. |
| 518 | 4083 |
| 4084 The prompting is done based on the prompt-string of the map | |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4085 and the strings associated with various map elements. |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4086 |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4087 This can be done with X menus or with menus put in the minibuf. |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4088 These are done in different ways, depending on how the input will be read. |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4089 Menus using X are done after auto-saving in read-char, getting the input |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4090 event from Fx_popup_menu; menus using the minibuf use read_char recursively |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4091 and do auto-saving in the inner call of read_char. */ |
| 518 | 4092 |
|
3453
1fd89e975a78
(read_char_menu_prompt): Now static. Add declaration.
Richard M. Stallman <rms@gnu.org>
parents:
3452
diff
changeset
|
4093 static Lisp_Object |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4094 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4095 int nmaps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4096 Lisp_Object *maps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4097 Lisp_Object prev_event; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4098 int *used_mouse_menu; |
| 518 | 4099 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4100 int mapno; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4101 register Lisp_Object name; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4102 Lisp_Object rest, vector; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4103 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
4104 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
|
4105 *used_mouse_menu = 0; |
| 518 | 4106 |
| 4107 /* Use local over global Menu maps */ | |
| 4108 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4109 if (! menu_prompting) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4110 return Qnil; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4111 |
|
9396
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4112 /* Optionally disregard all but the global map. */ |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4113 if (inhibit_local_menu_bar_menus) |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4114 { |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4115 maps += (nmaps - 1); |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4116 nmaps = 1; |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4117 } |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
4118 |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4119 /* 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
|
4120 for (mapno = 0; mapno < nmaps; mapno++) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4121 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4122 name = map_prompt (maps[mapno]); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4123 if (!NILP (name)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4124 break; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4125 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4126 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4127 /* 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
|
4128 if (mapno >= nmaps) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4129 return Qnil; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4130 |
| 9572 | 4131 #if (defined (HAVE_X_WINDOWS) && defined (HAVE_X_MENU)) || defined (MSDOS) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4132 /* 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
|
4133 use a real menu for mouse selection. */ |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
4134 if (EVENT_HAS_PARAMETERS (prev_event)) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4135 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4136 /* Display the menu and get the selection. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4137 Lisp_Object *realmaps |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4138 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object)); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4139 Lisp_Object value; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4140 int nmaps1 = 0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4141 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4142 /* Use the maps that are not nil. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4143 for (mapno = 0; mapno < nmaps; mapno++) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4144 if (!NILP (maps[mapno])) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4145 realmaps[nmaps1++] = maps[mapno]; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4146 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4147 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
|
4148 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
|
4149 { |
|
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
4150 /* 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
|
4151 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
|
4152 Return just the first event now. */ |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
4153 Vunread_command_events |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
4154 = nconc2 (XCONS (value)->cdr, Vunread_command_events); |
|
2719
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
4155 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
|
4156 } |
|
6932
bde97688f58b
(read_char_x_menu_prompt): Don't check for value = nil
Richard M. Stallman <rms@gnu.org>
parents:
6925
diff
changeset
|
4157 else if (NILP (value)) |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4158 value = Qt; |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
4159 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
|
4160 *used_mouse_menu = 1; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4161 return value; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4162 } |
| 9572 | 4163 #endif /* (HAVE_X_WINDOWS && HAVE_X_MENU) || MSDOS */ |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4164 return Qnil ; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4165 } |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4166 |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4167 static Lisp_Object |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
4168 read_char_minibuf_menu_prompt (commandflag, nmaps, maps) |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4169 int commandflag ; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4170 int nmaps; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4171 Lisp_Object *maps; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4172 { |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4173 int mapno; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4174 register Lisp_Object name; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4175 int nlength; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4176 int width = FRAME_WIDTH (selected_frame) - 4; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4177 char *menu = (char *) alloca (width + 4); |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4178 int idx = -1; |
|
7587
efaee8861ad4
(read_char_minibuf_menu_prompt): Don't forget to initialize nobindings.
Richard M. Stallman <rms@gnu.org>
parents:
7547
diff
changeset
|
4179 int nobindings = 1; |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4180 Lisp_Object rest, vector; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4181 |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4182 if (! menu_prompting) |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4183 return Qnil; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4184 |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4185 /* Get the menu name from the first map that has one (a prompt string). */ |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4186 for (mapno = 0; mapno < nmaps; mapno++) |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4187 { |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4188 name = map_prompt (maps[mapno]); |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4189 if (!NILP (name)) |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4190 break; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4191 } |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4192 |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4193 /* If we don't have any menus, just read a character normally. */ |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4194 if (mapno >= nmaps) |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4195 return Qnil; |
| 518 | 4196 |
| 4197 /* Prompt string always starts with map's prompt, and a space. */ | |
| 4198 strcpy (menu, XSTRING (name)->data); | |
| 4199 nlength = XSTRING (name)->size; | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4200 menu[nlength++] = ':'; |
| 518 | 4201 menu[nlength++] = ' '; |
| 4202 menu[nlength] = 0; | |
| 4203 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4204 /* Start prompting at start of first map. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4205 mapno = 0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4206 rest = maps[mapno]; |
| 518 | 4207 |
| 4208 /* Present the documented bindings, a line at a time. */ | |
| 4209 while (1) | |
| 4210 { | |
| 4211 int notfirst = 0; | |
| 4212 int i = nlength; | |
| 4213 Lisp_Object obj; | |
| 4214 int ch; | |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4215 int orig_defn_macro ; |
| 518 | 4216 |
| 4217 /* Loop over elements of map. */ | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4218 while (i < width) |
| 518 | 4219 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4220 Lisp_Object s, elt; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4221 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4222 /* 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
|
4223 if (NILP (rest)) |
| 518 | 4224 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4225 mapno++; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4226 /* 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
|
4227 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
|
4228 if (mapno == nmaps) |
| 518 | 4229 { |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4230 mapno = 0; |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
4231 if (notfirst || nobindings) break; |
| 518 | 4232 } |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4233 rest = maps[mapno]; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4234 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4235 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4236 /* Look at the next element of the map. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4237 if (idx >= 0) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4238 elt = XVECTOR (vector)->contents[idx]; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4239 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4240 elt = Fcar_safe (rest); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4241 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4242 if (idx < 0 && VECTORP (elt)) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4243 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4244 /* 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
|
4245 advanced past it, but start scanning its contents. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4246 rest = Fcdr_safe (rest); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4247 vector = elt; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4248 idx = 0; |
| 518 | 4249 } |
| 4250 else | |
| 4251 { | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4252 /* An ordinary element. */ |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4253 if ( idx < 0 ) |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4254 s = Fcar_safe (Fcdr_safe (elt)); /* alist */ |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4255 else |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4256 s = Fcar_safe(elt); /* vector */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4257 if (!STRINGP (s)) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4258 /* 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
|
4259 ; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4260 /* 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
|
4261 If this is the first on the line, always add it. */ |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4262 else if (XSTRING (s)->size + i + 2 < width |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4263 || !notfirst) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4264 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4265 int thiswidth; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4266 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4267 /* Punctuate between strings. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4268 if (notfirst) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4269 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4270 strcpy (menu + i, ", "); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4271 i += 2; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4272 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4273 notfirst = 1; |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4274 nobindings = 0 ; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4275 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4276 /* Add as much of string as fits. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4277 thiswidth = XSTRING (s)->size; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4278 if (thiswidth + i > width) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4279 thiswidth = width - i; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4280 bcopy (XSTRING (s)->data, menu + i, thiswidth); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4281 i += thiswidth; |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4282 menu[i] = 0; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4283 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4284 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4285 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4286 /* 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
|
4287 and save the element for the next line. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4288 strcpy (menu + i, "..."); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4289 break; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4290 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4291 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4292 /* Move past this element. */ |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4293 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4294 /* Handle reaching end of dense table. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4295 idx = -1; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4296 if (idx >= 0) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4297 idx++; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4298 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4299 rest = Fcdr_safe (rest); |
| 518 | 4300 } |
| 4301 } | |
| 4302 | |
| 4303 /* Prompt with that and read response. */ | |
| 4304 message1 (menu); | |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4305 |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4306 /* Make believe its not a keyboard macro in case the help char |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4307 is pressed. Help characters are not recorded because menu prompting |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4308 is not used on replay. |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4309 */ |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4310 orig_defn_macro = defining_kbd_macro ; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4311 defining_kbd_macro = 0 ; |
|
5889
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4312 do |
|
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4313 obj = read_char (commandflag, 0, 0, Qnil, 0); |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4314 while (BUFFERP (obj)); |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4315 defining_kbd_macro = orig_defn_macro ; |
| 518 | 4316 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4317 if (!INTEGERP (obj)) |
| 518 | 4318 return obj; |
| 4319 else | |
| 4320 ch = XINT (obj); | |
| 4321 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4322 if (! EQ (obj, menu_prompt_more_char) |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4323 && (!INTEGERP (menu_prompt_more_char) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4324 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char)))))) |
|
5565
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4325 { |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4326 if ( defining_kbd_macro ) |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4327 store_kbd_macro_char(obj) ; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4328 return obj; |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4329 } |
|
8b688d642fc1
(read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents:
5513
diff
changeset
|
4330 /* Help char - go round again */ |
| 518 | 4331 } |
| 4332 } | |
| 4333 | |
| 4334 /* Reading key sequences. */ | |
| 4335 | |
| 4336 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings | |
| 4337 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a | |
| 4338 keymap, or nil otherwise. Return the index of the first keymap in | |
| 4339 which KEY has any binding, or NMAPS if no map has a binding. | |
| 4340 | |
| 4341 If KEY is a meta ASCII character, treat it like meta-prefix-char | |
| 4342 followed by the corresponding non-meta character. Keymaps in | |
| 4343 CURRENT with non-prefix bindings for meta-prefix-char become nil in | |
| 4344 NEXT. | |
| 4345 | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4346 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
|
4347 unmodified. |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4348 |
| 518 | 4349 NEXT may == CURRENT. */ |
| 4350 | |
| 4351 static int | |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
4352 follow_key (key, nmaps, current, defs, next) |
| 518 | 4353 Lisp_Object key; |
| 4354 Lisp_Object *current, *defs, *next; | |
| 4355 int nmaps; | |
| 4356 { | |
| 4357 int i, first_binding; | |
| 4358 | |
| 4359 /* If KEY is a meta ASCII character, treat it like meta-prefix-char | |
| 4360 followed by the corresponding non-meta character. */ | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4361 if (INTEGERP (key) && (XINT (key) & CHAR_META)) |
| 518 | 4362 { |
| 4363 for (i = 0; i < nmaps; i++) | |
| 4364 if (! NILP (current[i])) | |
| 4365 { | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4366 next[i] = |
|
3748
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
4367 get_keyelt (access_keymap (current[i], meta_prefix_char, 1, 0)); |
| 518 | 4368 |
| 4369 /* Note that since we pass the resulting bindings through | |
| 4370 get_keymap_1, non-prefix bindings for meta-prefix-char | |
| 4371 disappear. */ | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4372 next[i] = get_keymap_1 (next[i], 0, 1); |
| 518 | 4373 } |
| 4374 else | |
| 4375 next[i] = Qnil; | |
| 4376 | |
| 4377 current = next; | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
4378 XSETINT (key, XFASTINT (key) & ~CHAR_META); |
| 518 | 4379 } |
| 4380 | |
| 4381 first_binding = nmaps; | |
| 4382 for (i = nmaps - 1; i >= 0; i--) | |
| 4383 { | |
| 4384 if (! NILP (current[i])) | |
| 4385 { | |
|
3748
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
4386 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0)); |
| 518 | 4387 if (! NILP (defs[i])) |
| 4388 first_binding = i; | |
| 4389 } | |
| 4390 else | |
| 4391 defs[i] = Qnil; | |
| 4392 } | |
| 4393 | |
| 4394 /* 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
|
4395 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
|
4396 for (i = 0; i < nmaps; i++) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4397 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1); |
| 518 | 4398 |
| 4399 return first_binding; | |
| 4400 } | |
| 4401 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4402 /* 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
|
4403 storing it in KEYBUF, a buffer of size BUFSIZE. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4404 Prompt with PROMPT. |
| 518 | 4405 Return the length of the key sequence stored. |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4406 Return -1 if the user rejected a command menu. |
| 518 | 4407 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4408 Echo starting immediately unless `prompt' is 0. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4409 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4410 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
|
4411 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
|
4412 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
|
4413 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4414 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
|
4415 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
|
4416 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
|
4417 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
|
4418 |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4419 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4420 `double-' events into similar click events, if that would make them |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4421 bound. We try to turn `triple-' events first into `double-' events, |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4422 then into clicks. |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4423 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4424 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
|
4425 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
|
4426 symbol denoting that area - `mode-line', `vertical-line', or |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4427 whatever. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4428 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4429 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
|
4430 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
|
4431 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4432 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
|
4433 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
|
4434 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
|
4435 |
| 518 | 4436 static int |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4437 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last) |
| 518 | 4438 Lisp_Object *keybuf; |
| 4439 int bufsize; | |
|
4878
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
4440 Lisp_Object prompt; |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4441 int dont_downcase_last; |
| 518 | 4442 { |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4443 int count = specpdl_ptr - specpdl; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4444 |
| 518 | 4445 /* How many keys there are in the current key sequence. */ |
| 4446 int t; | |
| 4447 | |
| 4448 /* The length of the echo buffer when we started reading, and | |
| 4449 the length of this_command_keys when we started reading. */ | |
| 4450 int echo_start; | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4451 int keys_start; |
| 518 | 4452 |
| 4453 /* The number of keymaps we're scanning right now, and the number of | |
| 4454 keymaps we have allocated space for. */ | |
| 4455 int nmaps; | |
| 4456 int nmaps_allocated = 0; | |
| 4457 | |
| 4458 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in | |
| 4459 the current keymaps. */ | |
| 4460 Lisp_Object *defs; | |
| 4461 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4462 /* 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
|
4463 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
|
4464 Lisp_Object *submaps; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4465 |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4466 /* The local map to start out with at start of key sequence. */ |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4467 Lisp_Object orig_local_map; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4468 |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4469 /* 1 if we have already considered switching to the local-map property |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4470 of the place where a mouse click occurred. */ |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4471 int localized_local_map = 0; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4472 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4473 /* 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
|
4474 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
|
4475 defs[i] is non-nil. */ |
| 518 | 4476 int first_binding; |
| 4477 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4478 /* If t < mock_input, then KEYBUF[t] should be read as the next |
| 899 | 4479 input key. |
| 4480 | |
| 4481 We use this to recover after recognizing a function key. Once we | |
| 4482 realize that a suffix of the current key sequence is actually a | |
| 4483 function key's escape sequence, we replace the suffix with the | |
| 4484 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
|
4485 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
|
4486 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
|
4487 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
|
4488 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
|
4489 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
|
4490 reading characters from the keyboard. */ |
| 518 | 4491 int mock_input = 0; |
| 4492 | |
| 899 | 4493 /* If the sequence is unbound in submaps[], then |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4494 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
|
4495 and fkey_map is its binding. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4496 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4497 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
|
4498 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
|
4499 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
|
4500 key's again in Vfunction_key_map. */ |
| 518 | 4501 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
|
4502 Lisp_Object fkey_map; |
| 518 | 4503 |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4504 /* Likewise, for key_translation_map. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4505 int keytran_start = 0, keytran_end = 0; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4506 Lisp_Object keytran_map; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4507 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4508 /* 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
|
4509 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
|
4510 Lisp_Object delayed_switch_frame; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4511 |
|
4823
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4512 /* See the comment below... */ |
|
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4513 #if defined (GOBBLE_FIRST_EVENT) |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4514 Lisp_Object first_event; |
|
4823
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4515 #endif |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4516 |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4517 Lisp_Object original_uppercase; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4518 int original_uppercase_position = -1; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4519 |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4520 /* Gets around Microsoft compiler limitations. */ |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4521 int dummyflag = 0; |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4522 |
|
5077
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4523 struct buffer *starting_buffer; |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4524 |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4525 /* Nonzero if we seem to have got the beginning of a binding |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4526 in function_key_map. */ |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4527 int function_key_possible = 0; |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
4528 int key_translation_possible = 0; |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4529 |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4530 int junk; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4531 |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4532 last_nonmenu_event = Qnil; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4533 |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4534 delayed_switch_frame = Qnil; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4535 fkey_map = Vfunction_key_map; |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4536 keytran_map = Vkey_translation_map; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4537 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4538 /* If there is no function-key-map, turn off function key scanning. */ |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4539 if (NILP (Fkeymapp (Vfunction_key_map))) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4540 fkey_start = fkey_end = bufsize + 1; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4541 |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4542 /* If there is no key-translation-map, turn off scanning. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4543 if (NILP (Fkeymapp (Vkey_translation_map))) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4544 keytran_start = keytran_end = bufsize + 1; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4545 |
| 518 | 4546 if (INTERACTIVE) |
| 4547 { | |
|
4878
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
4548 if (!NILP (prompt)) |
|
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
4549 echo_prompt (XSTRING (prompt)->data); |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
4550 else if (cursor_in_echo_area && echo_keystrokes) |
| 518 | 4551 /* This doesn't put in a dash if the echo buffer is empty, so |
| 4552 you don't always see a dash hanging out in the minibuffer. */ | |
| 4553 echo_dash (); | |
| 4554 } | |
| 4555 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4556 /* 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
|
4557 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
|
4558 if (INTERACTIVE) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4559 echo_start = echo_length (); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4560 keys_start = this_command_key_count; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4561 |
|
4823
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4562 #if defined (GOBBLE_FIRST_EVENT) |
|
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4563 /* This doesn't quite work, because some of the things that read_char |
|
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4564 does cannot safely be bypassed. It seems too risky to try to make |
|
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4565 this work right. */ |
|
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4566 |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4567 /* 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
|
4568 up any keymaps, in case a filter runs and switches buffers on us. */ |
|
4878
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
4569 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event, |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4570 &junk); |
|
4823
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
4571 #endif /* GOBBLE_FIRST_EVENT */ |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
4572 |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4573 orig_local_map = get_local_map (PT, current_buffer); |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4574 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4575 /* 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
|
4576 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
|
4577 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
|
4578 replay_sequence: |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4579 |
|
5077
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4580 starting_buffer = current_buffer; |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4581 function_key_possible = 0; |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
4582 key_translation_possible = 0; |
|
5077
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4583 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4584 /* Build our list of keymaps. |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
4585 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
|
4586 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
|
4587 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
|
4588 the initial keymaps from the current buffer. */ |
| 518 | 4589 { |
| 4590 Lisp_Object *maps; | |
| 4591 | |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4592 if (!NILP (Voverriding_local_map)) |
| 518 | 4593 { |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4594 nmaps = 2; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4595 if (nmaps > nmaps_allocated) |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4596 { |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4597 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0])); |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4598 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0])); |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4599 nmaps_allocated = nmaps; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4600 } |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4601 submaps[0] = Voverriding_local_map; |
| 518 | 4602 } |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4603 else |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4604 { |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4605 nmaps = current_minor_maps (0, &maps) + 2; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4606 if (nmaps > nmaps_allocated) |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4607 { |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4608 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0])); |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4609 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0])); |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4610 nmaps_allocated = nmaps; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4611 } |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4612 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0])); |
| 2061 | 4613 #ifdef USE_TEXT_PROPERTIES |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4614 submaps[nmaps-2] = orig_local_map; |
| 2061 | 4615 #else |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4616 submaps[nmaps-2] = current_buffer->keymap; |
| 2061 | 4617 #endif |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
4618 } |
|
3887
d8eb17d07558
* keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents:
3861
diff
changeset
|
4619 submaps[nmaps-1] = current_global_map; |
| 518 | 4620 } |
| 4621 | |
| 4622 /* Find an accurate initial value for first_binding. */ | |
| 4623 for (first_binding = 0; first_binding < nmaps; first_binding++) | |
| 899 | 4624 if (! NILP (submaps[first_binding])) |
| 518 | 4625 break; |
| 4626 | |
|
5077
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4627 /* Start from the beginning in keybuf. */ |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4628 t = 0; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4629 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4630 /* 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
|
4631 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
|
4632 this_command_key_count = keys_start; |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
4633 if (INTERACTIVE && t < mock_input) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4634 echo_truncate (echo_start); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4635 |
|
3809
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
4636 /* If the best binding for the current key sequence is a keymap, or |
|
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
4637 we may be looking at a function key's escape sequence, keep on |
|
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
4638 reading. */ |
| 899 | 4639 while ((first_binding < nmaps && ! NILP (submaps[first_binding])) |
|
3809
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
4640 || (first_binding >= nmaps |
|
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
4641 && fkey_start < t |
|
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
4642 /* mock input is never part of a function key's sequence. */ |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
4643 && mock_input <= fkey_start) |
|
10533
52b954844444
(read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
4644 || (first_binding >= nmaps |
|
52b954844444
(read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
4645 && keytran_start < t && key_translation_possible) |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4646 /* Don't return in the middle of a possible function key sequence, |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4647 if the only bindings we found were via case conversion. |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4648 Thus, if ESC O a has a function-key-map translation |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4649 and ESC o has a binding, don't return after ESC O, |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
4650 so that we can translate ESC O plus the next character. */ |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
4651 ) |
| 518 | 4652 { |
| 4653 Lisp_Object key; | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4654 int used_mouse_menu = 0; |
| 518 | 4655 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4656 /* 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
|
4657 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
|
4658 (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
|
4659 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
|
4660 of keybuf. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4661 int last_real_key_start; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4662 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4663 /* 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
|
4664 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
|
4665 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
|
4666 just one key. */ |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4667 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
|
4668 |
| 518 | 4669 if (t >= bufsize) |
| 4670 error ("key sequence too long"); | |
| 4671 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4672 if (INTERACTIVE) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4673 echo_local_start = echo_length (); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4674 keys_local_start = this_command_key_count; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4675 local_first_binding = first_binding; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4676 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4677 replay_key: |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4678 /* 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
|
4679 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
|
4680 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
|
4681 loop. */ |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
4682 if (INTERACTIVE && t < mock_input) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4683 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
|
4684 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
|
4685 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
|
4686 |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4687 /* By default, assume each event is "real". */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4688 last_real_key_start = t; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4689 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4690 /* Does mock_input indicate that we are re-reading a key sequence? */ |
| 518 | 4691 if (t < mock_input) |
| 4692 { | |
| 4693 key = keybuf[t]; | |
| 4694 add_command_key (key); | |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
4695 if (echo_keystrokes) |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
4696 echo_char (key); |
| 518 | 4697 } |
| 899 | 4698 |
| 4699 /* If not, we should actually read a character. */ | |
| 518 | 4700 else |
| 4701 { | |
|
3452
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
4702 struct buffer *buf = current_buffer; |
|
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
4703 |
|
4878
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
4704 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event, |
|
3452
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
4705 &used_mouse_menu); |
| 518 | 4706 |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4707 /* read_char returns t when it shows a menu and the user rejects it. |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4708 Just return -1. */ |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4709 if (EQ (key, Qt)) |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4710 return -1; |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
4711 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4712 /* read_char returns -1 at the end of a macro. |
| 518 | 4713 Emacs 18 handles this by returning immediately with a |
| 4714 zero, so that's what we'll do. */ | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4715 if (INTEGERP (key) && XINT (key) == -1) |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4716 { |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4717 t = 0; |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4718 /* The Microsoft C compiler can't handle the goto that |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4719 would go here. */ |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4720 dummyflag = 1; |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4721 break; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4722 } |
| 518 | 4723 |
|
5889
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4724 /* If the current buffer has been changed from under us, the |
|
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4725 keymap may have changed, so replay the sequence. */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4726 if (BUFFERP (key)) |
|
5889
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4727 { |
|
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4728 mock_input = t; |
|
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4729 goto replay_sequence; |
|
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4730 } |
|
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4731 |
|
5077
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4732 /* If we have a quit that was typed in another frame, and |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4733 quit_throw_to_read_char switched buffers, |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4734 replay to get the right keymap. */ |
|
8938
16c1ca187613
(kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents:
8936
diff
changeset
|
4735 if (XINT (key) == quit_char && current_buffer != starting_buffer) |
|
5077
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4736 { |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4737 keybuf[t++] = key; |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4738 mock_input = t; |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4739 Vquit_flag = Qnil; |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4740 goto replay_sequence; |
|
a928c879b7ea
(read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents:
5064
diff
changeset
|
4741 } |
|
5889
06bbb0e856d7
(read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents:
5887
diff
changeset
|
4742 |
| 518 | 4743 Vquit_flag = Qnil; |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4744 } |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4745 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4746 /* Clicks in non-text areas get prefixed by the symbol |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4747 in their CHAR-ADDRESS field. For example, a click on |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4748 the mode line is prefixed by the symbol `mode-line'. |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4749 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4750 Furthermore, key sequences beginning with mouse clicks |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4751 are read using the keymaps of the buffer clicked on, not |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4752 the current buffer. So we may have to switch the buffer |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4753 here. |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4754 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4755 When we turn one event into two events, we must make sure |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4756 that neither of the two looks like the original--so that, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4757 if we replay the events, they won't be expanded again. |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4758 If not for this, such reexpansion could happen either here |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4759 or when user programs play with this-command-keys. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4760 if (EVENT_HAS_PARAMETERS (key)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4761 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4762 Lisp_Object kind; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4763 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4764 kind = EVENT_HEAD_KIND (EVENT_HEAD (key)); |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4765 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
|
4766 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4767 Lisp_Object window, posn; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4768 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4769 window = POSN_WINDOW (EVENT_START (key)); |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4770 posn = POSN_BUFFER_POSN (EVENT_START (key)); |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4771 if (CONSP (posn)) |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4772 { |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4773 /* We're looking at the second event of a |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4774 sequence which we expanded before. Set |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4775 last_real_key_start appropriately. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4776 if (t > 0) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4777 last_real_key_start = t - 1; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4778 } |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4779 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4780 /* Key sequences beginning with mouse clicks are |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4781 read using the keymaps in the buffer clicked on, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4782 not the current buffer. If we're at the |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4783 beginning of a key sequence, switch buffers. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4784 if (last_real_key_start == 0 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4785 && WINDOWP (window) |
|
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4786 && BUFFERP (XWINDOW (window)->buffer) |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4787 && XBUFFER (XWINDOW (window)->buffer) != current_buffer) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4788 { |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4789 keybuf[t] = key; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4790 mock_input = t + 1; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4791 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4792 /* Arrange to go back to the original buffer once we're |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4793 done reading the key sequence. Note that we can't |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4794 use save_excursion_{save,restore} here, because they |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4795 save point as well as the current buffer; we don't |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4796 want to save point, because redisplay may change it, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4797 to accommodate a Fset_window_start or something. We |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4798 don't want to do this at the top of the function, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4799 because we may get input from a subprocess which |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4800 wants to change the selected window and stuff (say, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4801 emacsclient). */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4802 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4803 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4804 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer)); |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4805 orig_local_map = get_local_map (PT, current_buffer); |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4806 goto replay_sequence; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4807 } |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4808 /* For a mouse click, get the local text-property keymap |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4809 of the place clicked on, rather than point. */ |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4810 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr) |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4811 && ! localized_local_map) |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4812 { |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4813 Lisp_Object map_here, start, pos; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4814 |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4815 localized_local_map = 1; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4816 start = EVENT_START (key); |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4817 if (CONSP (start) && CONSP (XCONS (start)->cdr)) |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4818 { |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4819 pos = POSN_BUFFER_POSN (start); |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4820 if (INTEGERP (pos)) |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4821 { |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4822 map_here = get_local_map (XINT (pos), current_buffer); |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4823 if (!EQ (map_here, orig_local_map)) |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4824 { |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4825 orig_local_map = map_here; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4826 keybuf[t] = key; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4827 mock_input = t + 1; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4828 |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4829 goto replay_sequence; |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4830 } |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4831 } |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4832 } |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4833 } |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4834 |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4835 /* Expand mode-line and scroll-bar events into two events: |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4836 use posn as a fake prefix key. */ |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4837 if (SYMBOLP (posn)) |
|
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
4838 { |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4839 if (t + 1 >= bufsize) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4840 error ("key sequence too long"); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4841 keybuf[t] = posn; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4842 keybuf[t+1] = key; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4843 mock_input = t + 2; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4844 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4845 /* Zap the position in key, so we know that we've |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4846 expanded it, and don't try to do so again. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4847 POSN_BUFFER_POSN (EVENT_START (key)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4848 = Fcons (posn, Qnil); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4849 goto replay_key; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4850 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4851 } |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4852 else if (EQ (kind, Qswitch_frame)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4853 { |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4854 /* If we're at the beginning of a key sequence, go |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4855 ahead and return this event. If we're in the |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4856 midst of a key sequence, delay it until the end. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4857 if (t > 0) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4858 { |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4859 delayed_switch_frame = key; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4860 goto replay_key; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4861 } |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4862 } |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
4863 else if (CONSP (XCONS (key)->cdr) |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
4864 && CONSP (EVENT_START (key)) |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
4865 && CONSP (XCONS (EVENT_START (key))->cdr)) |
|
3452
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
4866 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4867 Lisp_Object posn; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4868 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4869 posn = POSN_BUFFER_POSN (EVENT_START (key)); |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4870 /* Handle menu-bar events: |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4871 insert the dummy prefix event `menu-bar'. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4872 if (EQ (posn, Qmenu_bar)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4873 { |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4874 if (t + 1 >= bufsize) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4875 error ("key sequence too long"); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4876 /* Run the Lucid hook. */ |
|
6208
db4139d43f8a
(command_loop_1, read_key_sequence, Fcommand_execute):
Richard M. Stallman <rms@gnu.org>
parents:
6204
diff
changeset
|
4877 if (!NILP (Vrun_hooks)) |
|
db4139d43f8a
(command_loop_1, read_key_sequence, Fcommand_execute):
Richard M. Stallman <rms@gnu.org>
parents:
6204
diff
changeset
|
4878 call1 (Vrun_hooks, Qactivate_menubar_hook); |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4879 /* If it has changed current-menubar from previous value, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4880 really recompute the menubar from the value. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4881 if (! NILP (Vlucid_menu_bar_dirty_flag)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4882 call0 (Qrecompute_lucid_menubar); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4883 keybuf[t] = posn; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4884 keybuf[t+1] = key; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4885 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4886 /* Zap the position in key, so we know that we've |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4887 expanded it, and don't try to do so again. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4888 POSN_BUFFER_POSN (EVENT_START (key)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4889 = Fcons (posn, Qnil); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4890 |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4891 mock_input = t + 2; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4892 goto replay_sequence; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4893 } |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4894 else if (CONSP (posn)) |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4895 { |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4896 /* We're looking at the second event of a |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4897 sequence which we expanded before. Set |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4898 last_real_key_start appropriately. */ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4899 if (last_real_key_start == t && t > 0) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4900 last_real_key_start = t - 1; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4901 } |
|
3452
3393f6e53d25
(read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
3294
diff
changeset
|
4902 } |
| 518 | 4903 } |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4904 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4905 /* 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
|
4906 to look up. */ |
| 518 | 4907 first_binding = (follow_key (key, |
| 4908 nmaps - first_binding, | |
| 899 | 4909 submaps + first_binding, |
| 518 | 4910 defs + first_binding, |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
4911 submaps + first_binding) |
| 518 | 4912 + first_binding); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4913 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4914 /* 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
|
4915 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
|
4916 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4917 Lisp_Object head; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4918 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4919 head = EVENT_HEAD (key); |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4920 if (EQ (head, Vhelp_char)) |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4921 { |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4922 read_key_sequence_cmd = Vprefix_help_command; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4923 keybuf[t++] = key; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4924 last_nonmenu_event = key; |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4925 /* The Microsoft C compiler can't handle the goto that |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4926 would go here. */ |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
4927 dummyflag = 1; |
|
10533
52b954844444
(read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents:
10457
diff
changeset
|
4928 break; |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4929 } |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
4930 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
4931 if (SYMBOLP (head)) |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4932 { |
|
6461
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4933 Lisp_Object breakdown; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4934 int modifiers; |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4935 |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4936 breakdown = parse_modifiers (head); |
|
eed1282ed6b0
(add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents:
6311
diff
changeset
|
4937 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car); |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4938 /* Attempt to reduce an unbound mouse event to a simpler |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4939 event that is bound: |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4940 Drags reduce to clicks. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4941 Double-clicks reduce to clicks. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4942 Triple-clicks reduce to double-clicks, then to clicks. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4943 Down-clicks are eliminated. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4944 Double-downs reduce to downs, then are eliminated. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4945 Triple-downs reduce to double-downs, then to downs, |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4946 then are eliminated. */ |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4947 if (modifiers & (down_modifier | drag_modifier |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4948 | double_modifier | triple_modifier)) |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4949 { |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4950 while (modifiers & (down_modifier | drag_modifier |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4951 | double_modifier | triple_modifier)) |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4952 { |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4953 Lisp_Object new_head, new_click; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4954 if (modifiers & triple_modifier) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4955 modifiers ^= (double_modifier | triple_modifier); |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4956 else if (modifiers & double_modifier) |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4957 modifiers &= ~double_modifier; |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4958 else if (modifiers & drag_modifier) |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
4959 modifiers &= ~drag_modifier; |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
4960 else |
|
4397
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4961 { |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4962 /* Dispose of this `down' event by simply jumping |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4963 back to replay_key, to get another event. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4964 |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4965 Note that if this event came from mock input, |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4966 then just jumping back to replay_key will just |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4967 hand it to us again. So we have to wipe out any |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4968 mock input. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4969 |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4970 We could delete keybuf[t] and shift everything |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4971 after that to the left by one spot, but we'd also |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4972 have to fix up any variable that points into |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4973 keybuf, and shifting isn't really necessary |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4974 anyway. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4975 |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4976 Adding prefixes for non-textual mouse clicks |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4977 creates two characters of mock input, and both |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4978 must be thrown away. If we're only looking at |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4979 the prefix now, we can just jump back to |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4980 replay_key. On the other hand, if we've already |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4981 processed the prefix, and now the actual click |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4982 itself is giving us trouble, then we've lost the |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4983 state of the keymaps we want to backtrack to, and |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4984 we need to replay the whole sequence to rebuild |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4985 it. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4986 |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4987 Beyond that, only function key expansion could |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4988 create more than two keys, but that should never |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4989 generate mouse events, so it's okay to zero |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4990 mock_input in that case too. |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4991 |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4992 Isn't this just the most wonderful code ever? */ |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4993 if (t == last_real_key_start) |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4994 { |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4995 mock_input = 0; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4996 goto replay_key; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4997 } |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4998 else |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
4999 { |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
5000 mock_input = last_real_key_start; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
5001 goto replay_sequence; |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
5002 } |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
5003 } |
|
d6d07b43f6d5
(last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents:
4315
diff
changeset
|
5004 |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5005 new_head |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5006 = apply_modifiers (modifiers, XCONS (breakdown)->car); |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5007 new_click |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5008 = Fcons (new_head, Fcons (EVENT_START (key), Qnil)); |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5009 |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5010 /* Look for a binding for this new key. follow_key |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5011 promises that it didn't munge submaps the |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5012 last time we called it, since key was unbound. */ |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5013 first_binding |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5014 = (follow_key (new_click, |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5015 nmaps - local_first_binding, |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5016 submaps + local_first_binding, |
|
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5017 defs + local_first_binding, |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5018 submaps + local_first_binding) |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
5019 + local_first_binding); |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5020 |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5021 /* If that click is bound, go for it. */ |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5022 if (first_binding < nmaps) |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5023 { |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5024 key = new_click; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5025 break; |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5026 } |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5027 /* Otherwise, we'll leave key set to the drag event. */ |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5028 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
5029 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
5030 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
5031 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
5032 |
| 518 | 5033 keybuf[t++] = key; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
5034 /* 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
|
5035 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
|
5036 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
|
5037 event that preceded the first level of menu. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
5038 if (!used_mouse_menu) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
5039 last_nonmenu_event = key; |
| 518 | 5040 |
| 5041 /* If the sequence is unbound, see if we can hang a function key | |
| 899 | 5042 off the end of it. We only want to scan real keyboard input |
| 5043 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
|
5044 re-reading old events, don't examine it. */ |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5045 if (first_binding >= nmaps |
| 899 | 5046 && t >= mock_input) |
| 518 | 5047 { |
| 5048 Lisp_Object fkey_next; | |
| 5049 | |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
5050 /* Continue scan from fkey_end until we find a bound suffix. |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
5051 If we fail, increment fkey_start |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
5052 and start fkey_end from there. */ |
| 518 | 5053 while (fkey_end < t) |
| 5054 { | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5055 Lisp_Object key; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5056 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5057 key = keybuf[fkey_end++]; |
| 853 | 5058 /* Look up meta-characters by prefixing them |
| 5059 with meta_prefix_char. I hate this. */ | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5060 if (INTEGERP (key) && XINT (key) & meta_modifier) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5061 { |
|
3748
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
5062 fkey_next |
|
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
5063 = get_keymap_1 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5064 (get_keyelt |
|
3748
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
5065 (access_keymap (fkey_map, meta_prefix_char, 1, 0)), |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5066 0, 1); |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5067 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier); |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5068 } |
| 853 | 5069 else |
| 5070 fkey_next = fkey_map; | |
| 5071 | |
|
3748
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
5072 fkey_next |
|
260c9c3200b1
Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents:
3682
diff
changeset
|
5073 = get_keyelt (access_keymap (fkey_next, key, 1, 0)); |
|
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
5074 |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5075 #if 0 /* I didn't turn this on, because it might cause trouble |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5076 for the mapping of return into C-m and tab into C-i. */ |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5077 /* Optionally don't map function keys into other things. |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5078 This enables the user to redefine kp- keys easily. */ |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5079 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping)) |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5080 fkey_next = Qnil; |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5081 #endif |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5082 |
|
4849
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5083 /* If the function key map gives a function, not an |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5084 array, then call the function with no args and use |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5085 its value instead. */ |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5086 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next)) |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5087 && fkey_end == t) |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5088 { |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5089 struct gcpro gcpro1, gcpro2, gcpro3; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5090 Lisp_Object tem; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5091 tem = fkey_next; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5092 |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5093 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame); |
|
4878
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
5094 fkey_next = call1 (fkey_next, prompt); |
|
4849
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5095 UNGCPRO; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5096 /* If the function returned something invalid, |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5097 barf--don't ignore it. |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5098 (To ignore it safely, we would need to gcpro a bunch of |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5099 other variables.) */ |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5100 if (! (VECTORP (fkey_next) || STRINGP (fkey_next))) |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5101 error ("Function in function-key-map returns invalid key sequence"); |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5102 } |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5103 |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
5104 function_key_possible = ! NILP (fkey_next); |
|
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
5105 |
|
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
5106 /* If keybuf[fkey_start..fkey_end] is bound in the |
| 547 | 5107 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
|
5108 sequence (i.e. fkey_end == t), replace it with |
| 547 | 5109 the binding and restart with fkey_start at the end. */ |
|
4137
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5110 if ((VECTORP (fkey_next) || STRINGP (fkey_next)) |
| 518 | 5111 && fkey_end == t) |
| 5112 { | |
|
4417
02b7d9476fae
(read_key_sequence): Use XFASTINT to convert value
Richard M. Stallman <rms@gnu.org>
parents:
4397
diff
changeset
|
5113 int len = XFASTINT (Flength (fkey_next)); |
|
4137
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5114 |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5115 t = fkey_start + len; |
| 518 | 5116 if (t >= bufsize) |
| 5117 error ("key sequence too long"); | |
| 5118 | |
|
4137
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5119 if (VECTORP (fkey_next)) |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5120 bcopy (XVECTOR (fkey_next)->contents, |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5121 keybuf + fkey_start, |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5122 (t - fkey_start) * sizeof (keybuf[0])); |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5123 else if (STRINGP (fkey_next)) |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5124 { |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5125 int i; |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5126 |
|
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5127 for (i = 0; i < len; i++) |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5128 XSETFASTINT (keybuf[fkey_start + i], |
|
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5129 XSTRING (fkey_next)->data[i]); |
|
4137
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5130 } |
| 518 | 5131 |
| 5132 mock_input = t; | |
| 5133 fkey_start = fkey_end = t; | |
|
3538
f53bcee8d914
(read_key_sequence): Reset fkey_map when we find
Richard M. Stallman <rms@gnu.org>
parents:
3453
diff
changeset
|
5134 fkey_map = Vfunction_key_map; |
| 518 | 5135 |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5136 /* Do pass the results through key-translation-map. */ |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5137 keytran_start = keytran_end = 0; |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5138 keytran_map = Vkey_translation_map; |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5139 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5140 goto replay_sequence; |
| 518 | 5141 } |
| 5142 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5143 fkey_map = get_keymap_1 (fkey_next, 0, 1); |
| 518 | 5144 |
| 547 | 5145 /* If we no longer have a bound suffix, try a new positions for |
| 5146 fkey_start. */ | |
| 518 | 5147 if (NILP (fkey_map)) |
| 5148 { | |
| 5149 fkey_end = ++fkey_start; | |
| 5150 fkey_map = Vfunction_key_map; | |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
5151 function_key_possible = 0; |
| 518 | 5152 } |
| 5153 } | |
| 5154 } | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5155 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5156 /* Look for this sequence in key-translation-map. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5157 { |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5158 Lisp_Object keytran_next; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5159 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5160 /* Scan from keytran_end until we find a bound suffix. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5161 while (keytran_end < t) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5162 { |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5163 Lisp_Object key; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5164 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5165 key = keybuf[keytran_end++]; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5166 /* Look up meta-characters by prefixing them |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5167 with meta_prefix_char. I hate this. */ |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5168 if (INTEGERP (key) && XINT (key) & meta_modifier) |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5169 { |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5170 keytran_next |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5171 = get_keymap_1 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5172 (get_keyelt |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5173 (access_keymap (keytran_map, meta_prefix_char, 1, 0)), |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5174 0, 1); |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5175 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier); |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5176 } |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5177 else |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5178 keytran_next = keytran_map; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5179 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5180 keytran_next |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5181 = get_keyelt (access_keymap (keytran_next, key, 1, 0)); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5182 |
|
4849
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5183 /* If the key translation map gives a function, not an |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5184 array, then call the function with no args and use |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5185 its value instead. */ |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5186 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next)) |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5187 && keytran_end == t) |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5188 { |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5189 struct gcpro gcpro1, gcpro2, gcpro3; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5190 Lisp_Object tem; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5191 tem = keytran_next; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5192 |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
5193 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame); |
|
4878
57c506c597b9
(read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents:
4849
diff
changeset
|
5194 keytran_next = call1 (keytran_next, prompt); |
|
4849
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5195 UNGCPRO; |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5196 /* If the function returned something invalid, |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5197 barf--don't ignore it. |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5198 (To ignore it safely, we would need to gcpro a bunch of |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5199 other variables.) */ |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5200 if (! (VECTORP (keytran_next) || STRINGP (keytran_next))) |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
5201 error ("Function in key-translation-map returns invalid key sequence"); |
|
4849
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5202 } |
|
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5203 |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5204 key_translation_possible = ! NILP (keytran_next); |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5205 |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5206 /* If keybuf[keytran_start..keytran_end] is bound in the |
|
4849
5ebf3eec091b
(read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents:
4823
diff
changeset
|
5207 key translation map and it's a suffix of the current |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5208 sequence (i.e. keytran_end == t), replace it with |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5209 the binding and restart with keytran_start at the end. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5210 if ((VECTORP (keytran_next) || STRINGP (keytran_next)) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5211 && keytran_end == t) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5212 { |
|
4417
02b7d9476fae
(read_key_sequence): Use XFASTINT to convert value
Richard M. Stallman <rms@gnu.org>
parents:
4397
diff
changeset
|
5213 int len = XFASTINT (Flength (keytran_next)); |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5214 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5215 t = keytran_start + len; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5216 if (t >= bufsize) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5217 error ("key sequence too long"); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5218 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5219 if (VECTORP (keytran_next)) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5220 bcopy (XVECTOR (keytran_next)->contents, |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5221 keybuf + keytran_start, |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5222 (t - keytran_start) * sizeof (keybuf[0])); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5223 else if (STRINGP (keytran_next)) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5224 { |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5225 int i; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5226 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5227 for (i = 0; i < len; i++) |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5228 XSETFASTINT (keybuf[keytran_start + i], |
|
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5229 XSTRING (keytran_next)->data[i]); |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5230 } |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5231 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5232 mock_input = t; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5233 keytran_start = keytran_end = t; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5234 keytran_map = Vkey_translation_map; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5235 |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5236 /* Don't pass the results of key-translation-map |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5237 through function-key-map. */ |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5238 fkey_start = fkey_end = t; |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5239 fkey_map = Vkey_translation_map; |
|
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5240 |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5241 goto replay_sequence; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5242 } |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5243 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5244 keytran_map = get_keymap_1 (keytran_next, 0, 1); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5245 |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5246 /* If we no longer have a bound suffix, try a new positions for |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5247 keytran_start. */ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5248 if (NILP (keytran_map)) |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5249 { |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5250 keytran_end = ++keytran_start; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5251 keytran_map = Vkey_translation_map; |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5252 key_translation_possible = 0; |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5253 } |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5254 } |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5255 } |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5256 |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5257 /* If KEY is not defined in any of the keymaps, |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5258 and cannot be part of a function key or translation, |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5259 and is an upper case letter |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5260 use the corresponding lower-case letter instead. */ |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5261 if (first_binding == nmaps && ! function_key_possible |
|
9445
712af9626dc0
(read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents:
9396
diff
changeset
|
5262 && ! key_translation_possible |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5263 && INTEGERP (key) |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5264 && ((((XINT (key) & 0x3ffff) |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5265 < XSTRING (current_buffer->downcase_table)->size) |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5266 && UPPERCASEP (XINT (key) & 0x3ffff)) |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5267 || (XINT (key) & shift_modifier))) |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5268 { |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5269 original_uppercase = key; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5270 original_uppercase_position = t - 1; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5271 |
|
8418
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5272 if (XINT (key) & shift_modifier) |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5273 XSETINT (key, XINT (key) & ~shift_modifier); |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5274 else |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5275 XSETINT (key, (DOWNCASE (XINT (key) & 0x3ffff) |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5276 | (XINT (key) & ~0x3ffff))); |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5277 |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5278 keybuf[t - 1] = key; |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5279 mock_input = t; |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5280 goto replay_sequence; |
|
d97339356ae6
(follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents:
8302
diff
changeset
|
5281 } |
|
10147
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5282 /* If KEY is not defined in any of the keymaps, |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5283 and cannot be part of a function key or translation, |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5284 and is a shifted function key, |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5285 use the corresponding unshifted function key instead. */ |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5286 if (first_binding == nmaps && ! function_key_possible |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5287 && ! key_translation_possible |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5288 && SYMBOLP (key)) |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5289 { |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5290 Lisp_Object breakdown; |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5291 int modifiers; |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5292 |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5293 original_uppercase = key; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5294 original_uppercase_position = t - 1; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5295 |
|
10147
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5296 breakdown = parse_modifiers (key); |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5297 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car); |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5298 if (modifiers & shift_modifier) |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5299 { |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5300 modifiers &= ~shift_modifier; |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5301 key = apply_modifiers (make_number (modifiers), |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5302 XCONS (breakdown)->car); |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5303 |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5304 keybuf[t - 1] = key; |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5305 mock_input = t; |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5306 goto replay_sequence; |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5307 } |
|
ab78d1d2f5d7
(read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
10070
diff
changeset
|
5308 } |
| 518 | 5309 } |
| 5310 | |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5311 if (!dummyflag) |
|
9800
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
5312 read_key_sequence_cmd = (first_binding < nmaps |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
5313 ? defs[first_binding] |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
5314 : Qnil); |
|
476dc2f97d11
(read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents:
9745
diff
changeset
|
5315 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
5316 unread_switch_frame = delayed_switch_frame; |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
5317 unbind_to (count, Qnil); |
|
3799
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5318 |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5319 if (dont_downcase_last && t - 1 == original_uppercase_position) |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5320 keybuf[t - 1] = original_uppercase; |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5321 |
|
3799
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5322 /* Occasionally we fabricate events, perhaps by expanding something |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5323 according to function-key-map, or by adding a prefix symbol to a |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5324 mouse click in the scroll bar or modeline. In this cases, return |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5325 the entire generated key sequence, even if we hit an unbound |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5326 prefix or a definition before the end. This means that you will |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5327 be able to push back the event properly, and also means that |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5328 read-key-sequence will always return a logical unit. |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5329 |
|
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5330 Better ideas? */ |
|
3809
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
5331 for (; t < mock_input; t++) |
|
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
5332 { |
|
8076
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
5333 if (echo_keystrokes) |
|
3a35434b19d2
(safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents:
8067
diff
changeset
|
5334 echo_char (keybuf[t]); |
|
3809
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
5335 add_command_key (keybuf[t]); |
|
0f579c7269a3
* keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents:
3799
diff
changeset
|
5336 } |
|
3799
1c2303940681
* keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents:
3748
diff
changeset
|
5337 |
| 518 | 5338 return t; |
| 5339 } | |
| 5340 | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5341 #if 0 /* This doc string is too long for some compilers. |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5342 This commented-out definition serves for DOC. */ |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
5343 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0, |
| 518 | 5344 "Read a sequence of keystrokes and return as a string or vector.\n\ |
| 5345 The sequence is sufficient to specify a non-prefix command in the\n\ | |
| 5346 current local and global maps.\n\ | |
| 5347 \n\ | |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
5348 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
|
5349 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
|
5350 as a continuation of the previous key.\n\ |
| 518 | 5351 \n\ |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5352 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\ |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5353 convert the last event to lower case. (Normally any upper case event\n\ |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5354 is converted to lower case if the original event is undefined and the lower\n\ |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5355 case equivalent is defined.) A non-nil value is appropriate for reading\n\ |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5356 a key sequence to be defined.\n\ |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5357 \n\ |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5358 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
|
5359 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
|
5360 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5361 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
|
5362 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
|
5363 of the selected window as normal.\n\ |
|
4988
2f9a58694d43
(Fread_key_sequence): Split the doc string with "".
Richard M. Stallman <rms@gnu.org>
parents:
4878
diff
changeset
|
5364 ""\n\ |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5365 `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
|
5366 only care about the click or drag events which follow them. If a drag\n\ |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5367 or multi-click event is unbound, but the corresponding click event would\n\ |
|
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5368 be bound, `read-key-sequence' turns the event into a click event at the\n\ |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5369 drag's starting position. This means that you don't have to distinguish\n\ |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
5370 between click and drag, double, or triple events unless you want to.\n\ |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5371 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5372 `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
|
5373 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
|
5374 `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
|
5375 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5376 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
|
5377 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
|
5378 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
5379 `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
|
5380 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
|
5381 `function-key-map' for more details.") |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
5382 (prompt, continue_echo) |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5383 #endif |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5384 |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5385 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 3, 0, |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
5386 0) |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5387 (prompt, continue_echo, dont_downcase_last) |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5388 Lisp_Object prompt, continue_echo, dont_downcase_last; |
| 518 | 5389 { |
| 5390 Lisp_Object keybuf[30]; | |
| 5391 register int i; | |
| 5392 struct gcpro gcpro1, gcpro2; | |
| 5393 | |
| 5394 if (!NILP (prompt)) | |
| 5395 CHECK_STRING (prompt, 0); | |
| 5396 QUIT; | |
| 5397 | |
| 5398 bzero (keybuf, sizeof keybuf); | |
| 5399 GCPRO1 (keybuf[0]); | |
| 5400 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0])); | |
| 5401 | |
| 727 | 5402 if (NILP (continue_echo)) |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
5403 this_command_key_count = 0; |
|
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
5404 |
|
10539
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5405 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])), |
|
ffef84d4d8a8
(read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents:
10533
diff
changeset
|
5406 prompt, ! NILP (dont_downcase_last)); |
| 518 | 5407 |
|
4106
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
5408 if (i == -1) |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
5409 { |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
5410 Vquit_flag = Qt; |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
5411 QUIT; |
|
bfc21ea9a00f
(read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents:
4097
diff
changeset
|
5412 } |
| 518 | 5413 UNGCPRO; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5414 return make_event_array (i, keybuf); |
| 518 | 5415 } |
| 5416 | |
| 5417 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0, | |
| 5418 "Execute CMD as an editor command.\n\ | |
| 5419 CMD must be a symbol that satisfies the `commandp' predicate.\n\ | |
| 5420 Optional second arg RECORD-FLAG non-nil\n\ | |
| 5421 means unconditionally put this command in `command-history'.\n\ | |
| 5422 Otherwise, that is done only if an arg is read using the minibuffer.") | |
| 5423 (cmd, record) | |
| 5424 Lisp_Object cmd, record; | |
| 5425 { | |
| 5426 register Lisp_Object final; | |
| 5427 register Lisp_Object tem; | |
| 5428 Lisp_Object prefixarg; | |
| 5429 struct backtrace backtrace; | |
| 5430 extern int debug_on_next_call; | |
| 5431 | |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
5432 prefixarg = current_perdisplay->Vprefix_arg; |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
5433 current_perdisplay->Vprefix_arg = Qnil; |
|
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
5434 current_perdisplay->Vcurrent_prefix_arg = prefixarg; |
| 518 | 5435 debug_on_next_call = 0; |
| 5436 | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5437 if (SYMBOLP (cmd)) |
| 518 | 5438 { |
| 5439 tem = Fget (cmd, Qdisabled); | |
|
6208
db4139d43f8a
(command_loop_1, read_key_sequence, Fcommand_execute):
Richard M. Stallman <rms@gnu.org>
parents:
6204
diff
changeset
|
5440 if (!NILP (tem) && !NILP (Vrun_hooks)) |
|
4094
1dae74fd93d2
(Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4088
diff
changeset
|
5441 return call1 (Vrun_hooks, Qdisabled_command_hook); |
| 518 | 5442 } |
| 5443 | |
| 5444 while (1) | |
| 5445 { | |
| 648 | 5446 final = Findirect_function (cmd); |
| 518 | 5447 |
| 5448 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload))) | |
| 5449 do_autoload (final, cmd); | |
| 5450 else | |
| 5451 break; | |
| 5452 } | |
| 5453 | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5454 if (STRINGP (final) || VECTORP (final)) |
| 518 | 5455 { |
| 5456 /* If requested, place the macro in the command history. For | |
| 5457 other sorts of commands, call-interactively takes care of | |
| 5458 this. */ | |
| 5459 if (!NILP (record)) | |
| 5460 Vcommand_history | |
| 5461 = Fcons (Fcons (Qexecute_kbd_macro, | |
| 5462 Fcons (final, Fcons (prefixarg, Qnil))), | |
| 5463 Vcommand_history); | |
| 5464 | |
| 5465 return Fexecute_kbd_macro (final, prefixarg); | |
| 5466 } | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5467 if (CONSP (final) || SUBRP (final) || COMPILEDP (final)) |
| 518 | 5468 { |
| 5469 backtrace.next = backtrace_list; | |
| 5470 backtrace_list = &backtrace; | |
| 5471 backtrace.function = &Qcall_interactively; | |
| 5472 backtrace.args = &cmd; | |
| 5473 backtrace.nargs = 1; | |
| 5474 backtrace.evalargs = 0; | |
| 5475 | |
| 5476 tem = Fcall_interactively (cmd, record); | |
| 5477 | |
| 5478 backtrace_list = backtrace.next; | |
| 5479 return tem; | |
| 5480 } | |
| 5481 return Qnil; | |
| 5482 } | |
| 5483 | |
| 5484 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, | |
| 5485 1, 1, "P", | |
| 5486 "Read function name, then read its arguments and call it.") | |
| 5487 (prefixarg) | |
| 5488 Lisp_Object prefixarg; | |
| 5489 { | |
| 5490 Lisp_Object function; | |
| 5491 char buf[40]; | |
| 5492 Lisp_Object saved_keys; | |
| 5493 struct gcpro gcpro1; | |
| 5494 | |
|
5894
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
5495 saved_keys = Fvector (this_command_key_count, |
|
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
5496 XVECTOR (this_command_keys)->contents); |
| 518 | 5497 buf[0] = 0; |
| 5498 GCPRO1 (saved_keys); | |
| 5499 | |
| 5500 if (EQ (prefixarg, Qminus)) | |
| 5501 strcpy (buf, "- "); | |
| 5502 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4) | |
| 5503 strcpy (buf, "C-u "); | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5504 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car)) |
| 518 | 5505 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car)); |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5506 else if (INTEGERP (prefixarg)) |
| 518 | 5507 sprintf (buf, "%d ", XINT (prefixarg)); |
| 5508 | |
| 5509 /* This isn't strictly correct if execute-extended-command | |
| 5510 is bound to anything else. Perhaps it should use | |
| 5511 this_command_keys? */ | |
| 5512 strcat (buf, "M-x "); | |
| 5513 | |
| 5514 /* Prompt with buf, and then read a string, completing from and | |
| 5515 restricting to the set of all defined commands. Don't provide | |
|
4823
ec62e93360d1
(read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents:
4773
diff
changeset
|
5516 any initial input. Save the command read on the extended-command |
|
4773
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
5517 history list. */ |
| 518 | 5518 function = Fcompleting_read (build_string (buf), |
| 5519 Vobarray, Qcommandp, | |
|
4773
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
5520 Qt, Qnil, Qextended_command_history); |
| 518 | 5521 |
| 708 | 5522 /* Set this_command_keys to the concatenation of saved_keys and |
| 5523 function, followed by a RET. */ | |
| 518 | 5524 { |
| 708 | 5525 struct Lisp_String *str; |
|
5894
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
5526 Lisp_Object *keys; |
| 518 | 5527 int i; |
| 5528 Lisp_Object tem; | |
| 5529 | |
| 708 | 5530 this_command_key_count = 0; |
| 5531 | |
|
5894
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
5532 keys = XVECTOR (saved_keys)->contents; |
|
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
5533 for (i = 0; i < XVECTOR (saved_keys)->size; i++) |
|
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
5534 add_command_key (keys[i]); |
| 708 | 5535 |
| 5536 str = XSTRING (function); | |
| 5537 for (i = 0; i < str->size; i++) | |
| 5538 { | |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5539 XSETFASTINT (tem, str->data[i]); |
| 708 | 5540 add_command_key (tem); |
| 5541 } | |
| 5542 | |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5543 XSETFASTINT (tem, '\015'); |
| 708 | 5544 add_command_key (tem); |
| 518 | 5545 } |
| 5546 | |
| 5547 UNGCPRO; | |
| 5548 | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
5549 function = Fintern (function, Qnil); |
|
10626
616345f74278
(cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents:
10602
diff
changeset
|
5550 current_perdisplay->Vprefix_arg = prefixarg; |
| 518 | 5551 this_command = function; |
| 5552 | |
| 5553 return Fcommand_execute (function, Qt); | |
| 5554 } | |
| 5555 | |
| 5556 | |
| 5557 detect_input_pending () | |
| 5558 { | |
| 5559 if (!input_pending) | |
| 5560 get_input_pending (&input_pending); | |
| 5561 | |
| 5562 return input_pending; | |
| 5563 } | |
| 5564 | |
| 648 | 5565 /* This is called in some cases before a possible quit. |
| 5566 It cases the next call to detect_input_pending to recompute input_pending. | |
| 5567 So calling this function unnecessarily can't do any harm. */ | |
| 5568 clear_input_pending () | |
| 5569 { | |
| 5570 input_pending = 0; | |
| 5571 } | |
| 5572 | |
| 518 | 5573 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0, |
| 5574 "T if command input is currently available with no waiting.\n\ | |
| 5575 Actually, the value is nil only if we can be sure that no input is available.") | |
| 5576 () | |
| 5577 { | |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
5578 if (!NILP (Vunread_command_events) || unread_command_char != -1) |
| 518 | 5579 return (Qt); |
| 5580 | |
| 5581 return detect_input_pending () ? Qt : Qnil; | |
| 5582 } | |
| 5583 | |
| 5584 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
|
5585 "Return vector of last 100 events, not counting those from keyboard macros.") |
| 518 | 5586 () |
| 5587 { | |
|
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
5588 Lisp_Object *keys = XVECTOR (recent_keys)->contents; |
| 518 | 5589 Lisp_Object val; |
| 5590 | |
| 5591 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
|
5592 return Fvector (total_keys, keys); |
| 518 | 5593 else |
| 5594 { | |
|
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
5595 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
|
5596 bcopy (keys + recent_keys_index, |
| 518 | 5597 XVECTOR (val)->contents, |
| 5598 (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
|
5599 bcopy (keys, |
| 518 | 5600 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index, |
| 5601 recent_keys_index * sizeof (Lisp_Object)); | |
| 5602 return val; | |
| 5603 } | |
| 5604 } | |
| 5605 | |
| 5606 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
|
5607 "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
|
5608 The value is a string or a vector.") |
| 518 | 5609 () |
| 5610 { | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5611 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
|
5612 XVECTOR (this_command_keys)->contents); |
| 518 | 5613 } |
| 5614 | |
| 5615 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0, | |
| 5616 "Return the current depth in recursive edits.") | |
| 5617 () | |
| 5618 { | |
| 5619 Lisp_Object temp; | |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
5620 XSETFASTINT (temp, command_loop_level + minibuf_level); |
| 518 | 5621 return temp; |
| 5622 } | |
| 5623 | |
| 5624 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, | |
| 5625 "FOpen dribble file: ", | |
|
1888
86ff3942d7e1
(Fopen_dribble_file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1842
diff
changeset
|
5626 "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
|
5627 If FILE is nil, close any open dribble file.") |
| 518 | 5628 (file) |
| 5629 Lisp_Object file; | |
| 5630 { | |
| 5631 if (NILP (file)) | |
| 5632 { | |
|
9977
c5c2a86432a4
(Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents:
9881
diff
changeset
|
5633 if (dribble) |
|
c5c2a86432a4
(Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents:
9881
diff
changeset
|
5634 { |
|
c5c2a86432a4
(Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents:
9881
diff
changeset
|
5635 fclose (dribble); |
|
c5c2a86432a4
(Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents:
9881
diff
changeset
|
5636 dribble = 0; |
|
c5c2a86432a4
(Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents:
9881
diff
changeset
|
5637 } |
| 518 | 5638 } |
| 5639 else | |
| 5640 { | |
| 5641 file = Fexpand_file_name (file, Qnil); | |
| 5642 dribble = fopen (XSTRING (file)->data, "w"); | |
| 5643 } | |
| 5644 return Qnil; | |
| 5645 } | |
| 5646 | |
| 5647 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0, | |
| 5648 "Discard the contents of the terminal input buffer.\n\ | |
| 5649 Also cancel any kbd macro being defined.") | |
| 5650 () | |
| 5651 { | |
| 5652 defining_kbd_macro = 0; | |
| 5653 update_mode_lines++; | |
| 5654 | |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
5655 Vunread_command_events = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5656 unread_command_char = -1; |
| 518 | 5657 |
| 5658 discard_tty_input (); | |
| 5659 | |
|
1654
fe6f6e55182f
* keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents:
1590
diff
changeset
|
5660 /* 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
|
5661 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
|
5662 with that? */ |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5663 current_perdisplay->kbd_fetch_ptr |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5664 = (struct input_event *) current_perdisplay->kbd_store_ptr; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5665 Ffillarray (current_perdisplay->kbd_buffer_frame_or_window, Qnil); |
| 518 | 5666 input_pending = 0; |
| 5667 | |
| 5668 return Qnil; | |
| 5669 } | |
| 5670 | |
| 5671 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "", | |
| 5672 "Stop Emacs and return to superior process. You can resume later.\n\ | |
|
6101
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
5673 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\ |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
5674 control, run a subshell instead.\n\n\ |
| 518 | 5675 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
|
5676 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
|
5677 \n\ |
|
9215
fa3883c219ea
(head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents:
9124
diff
changeset
|
5678 Before suspending, run the normal hook `suspend-hook'.\n\ |
|
fa3883c219ea
(head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents:
9124
diff
changeset
|
5679 After resumption run the normal hook `suspend-resume-hook'.\n\ |
| 518 | 5680 \n\ |
| 5681 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
|
5682 On such systems, Emacs starts a subshell instead of suspending.") |
| 518 | 5683 (stuffstring) |
| 5684 Lisp_Object stuffstring; | |
| 5685 { | |
|
1895
b497a7ec0d58
(Fsuspend_emacs): Make tem not register.
Richard M. Stallman <rms@gnu.org>
parents:
1891
diff
changeset
|
5686 Lisp_Object tem; |
| 518 | 5687 int count = specpdl_ptr - specpdl; |
| 5688 int old_height, old_width; | |
| 5689 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
|
5690 struct gcpro gcpro1, gcpro2; |
| 518 | 5691 extern init_sys_modes (); |
| 5692 | |
| 5693 if (!NILP (stuffstring)) | |
| 5694 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
|
5695 |
|
2338
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
5696 /* Run the functions in suspend-hook. */ |
|
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
5697 if (!NILP (Vrun_hooks)) |
|
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
5698 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
|
5699 |
| 518 | 5700 GCPRO1 (stuffstring); |
| 765 | 5701 get_frame_size (&old_width, &old_height); |
| 518 | 5702 reset_sys_modes (); |
| 5703 /* sys_suspend can get an error if it tries to fork a subshell | |
| 5704 and the system resources aren't available for that. */ | |
| 5705 record_unwind_protect (init_sys_modes, 0); | |
| 5706 stuff_buffered_input (stuffstring); | |
|
6101
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
5707 if (cannot_suspend) |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
5708 sys_subshell (); |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
5709 else |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
5710 sys_suspend (); |
| 518 | 5711 unbind_to (count, Qnil); |
| 5712 | |
| 5713 /* Check if terminal/window size has changed. | |
| 5714 Note that this is not useful when we are running directly | |
| 5715 with a window system; but suspend should be disabled in that case. */ | |
| 765 | 5716 get_frame_size (&width, &height); |
| 518 | 5717 if (width != old_width || height != old_height) |
|
4137
9f3fe01a678d
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4115
diff
changeset
|
5718 change_frame_size (selected_frame, height, width, 0, 0); |
| 518 | 5719 |
|
2338
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
5720 /* Run suspend-resume-hook. */ |
| 518 | 5721 if (!NILP (Vrun_hooks)) |
| 5722 call1 (Vrun_hooks, intern ("suspend-resume-hook")); | |
| 5723 | |
| 5724 UNGCPRO; | |
| 5725 return Qnil; | |
| 5726 } | |
| 5727 | |
| 5728 /* If STUFFSTRING is a string, stuff its contents as pending terminal input. | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3538
diff
changeset
|
5729 Then in any case stuff anything Emacs has read ahead and not used. */ |
| 518 | 5730 |
| 5731 stuff_buffered_input (stuffstring) | |
| 5732 Lisp_Object stuffstring; | |
| 5733 { | |
| 5734 /* stuff_char works only in BSD, versions 4.2 and up. */ | |
| 5735 #ifdef BSD | |
| 5736 #ifndef BSD4_1 | |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5737 register unsigned char *p; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5738 PERDISPLAY *perd; |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5739 |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5740 if (STRINGP (stuffstring)) |
| 518 | 5741 { |
| 5742 register int count; | |
| 5743 | |
| 5744 p = XSTRING (stuffstring)->data; | |
| 5745 count = XSTRING (stuffstring)->size; | |
| 5746 while (count-- > 0) | |
| 5747 stuff_char (*p++); | |
| 5748 stuff_char ('\n'); | |
| 5749 } | |
| 5750 /* Anything we have read ahead, put back for the shell to read. */ | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5751 #ifndef MULTI_PERDISPLAY |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5752 perd = &the_only_perdisplay; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5753 #else |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5754 /* ?? What should this do when we have multiple keyboards?? */ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5755 perd = current_perdisplay; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5756 if (!perd) |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5757 return; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
5758 #endif |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5759 while (perd->kbd_fetch_ptr != perd->kbd_store_ptr) |
| 518 | 5760 { |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5761 if (perd->kbd_fetch_ptr == perd->kbd_buffer + KBD_BUFFER_SIZE) |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5762 perd->kbd_fetch_ptr = perd->kbd_buffer; |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5763 if (perd->kbd_fetch_ptr->kind == ascii_keystroke) |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5764 stuff_char (perd->kbd_fetch_ptr->code); |
|
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5765 perd->kbd_fetch_ptr->kind = no_event; |
|
10579
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
5766 (XVECTOR (perd->kbd_buffer_frame_or_window)->contents[perd->kbd_fetch_ptr |
|
a7796a68f001
* keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents:
10551
diff
changeset
|
5767 - perd->kbd_buffer] |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
5768 = Qnil); |
|
10551
7b2cb7c878d0
(the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents:
10539
diff
changeset
|
5769 perd->kbd_fetch_ptr++; |
| 518 | 5770 } |
| 5771 input_pending = 0; | |
| 5772 #endif | |
| 5773 #endif /* BSD and not BSD4_1 */ | |
| 5774 } | |
| 5775 | |
| 648 | 5776 set_waiting_for_input (time_to_clear) |
| 5777 EMACS_TIME *time_to_clear; | |
| 518 | 5778 { |
| 648 | 5779 input_available_clear_time = time_to_clear; |
| 518 | 5780 |
| 5781 /* Tell interrupt_signal to throw back to read_char, */ | |
| 5782 waiting_for_input = 1; | |
| 5783 | |
| 5784 /* If interrupt_signal was called before and buffered a C-g, | |
| 5785 make it run again now, to avoid timing error. */ | |
| 5786 if (!NILP (Vquit_flag)) | |
| 5787 quit_throw_to_read_char (); | |
| 5788 } | |
| 5789 | |
| 5790 clear_waiting_for_input () | |
| 5791 { | |
| 5792 /* Tell interrupt_signal not to throw back to read_char, */ | |
| 5793 waiting_for_input = 0; | |
| 648 | 5794 input_available_clear_time = 0; |
| 518 | 5795 } |
| 5796 | |
| 5797 /* This routine is called at interrupt level in response to C-G. | |
| 5798 If interrupt_input, this is the handler for SIGINT. | |
| 5799 Otherwise, it is called from kbd_buffer_store_event, | |
| 5800 in handling SIGIO or SIGTINT. | |
| 5801 | |
| 5802 If `waiting_for_input' is non zero, then unless `echoing' is nonzero, | |
| 5803 immediately throw back to read_char. | |
| 5804 | |
| 5805 Otherwise it sets the Lisp variable quit-flag not-nil. | |
| 5806 This causes eval to throw, when it gets a chance. | |
| 5807 If quit-flag is already non-nil, it stops the job right away. */ | |
| 5808 | |
| 5809 SIGTYPE | |
|
10746
ea87e4d9c8ea
(input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents:
10701
diff
changeset
|
5810 interrupt_signal (signalnum) /* If we don't have an argument, */ |
|
ea87e4d9c8ea
(input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents:
10701
diff
changeset
|
5811 int signalnum; /* some compilers complain in signal calls. */ |
| 518 | 5812 { |
| 5813 char c; | |
| 5814 /* Must preserve main program's value of errno. */ | |
| 5815 int old_errno = errno; | |
| 5816 | |
| 5817 #ifdef USG | |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5818 if (!read_socket_hook && NILP (Vwindow_system)) |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5819 { |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5820 /* USG systems forget handlers when they are used; |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5821 must reestablish each time */ |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5822 signal (SIGINT, interrupt_signal); |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5823 signal (SIGQUIT, interrupt_signal); |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
5824 } |
| 518 | 5825 #endif /* USG */ |
| 5826 | |
| 5827 cancel_echoing (); | |
| 5828 | |
|
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
5829 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame)) |
| 518 | 5830 { |
| 5831 fflush (stdout); | |
| 5832 reset_sys_modes (); | |
| 5833 sigfree (); | |
| 5834 #ifdef SIGTSTP /* Support possible in later USG versions */ | |
| 5835 /* | |
| 5836 * On systems which can suspend the current process and return to the original | |
| 5837 * shell, this command causes the user to end up back at the shell. | |
| 5838 * The "Auto-save" and "Abort" questions are not asked until | |
| 5839 * the user elects to return to emacs, at which point he can save the current | |
| 5840 * job and either dump core or continue. | |
| 5841 */ | |
| 5842 sys_suspend (); | |
| 5843 #else | |
| 5844 #ifdef VMS | |
| 5845 if (sys_suspend () == -1) | |
| 5846 { | |
| 5847 printf ("Not running as a subprocess;\n"); | |
| 5848 printf ("you can continue or abort.\n"); | |
| 5849 } | |
| 5850 #else /* not VMS */ | |
| 5851 /* Perhaps should really fork an inferior shell? | |
| 5852 But that would not provide any way to get back | |
| 5853 to the original shell, ever. */ | |
| 5854 printf ("No support for stopping a process on this operating system;\n"); | |
| 5855 printf ("you can continue or abort.\n"); | |
| 5856 #endif /* not VMS */ | |
| 5857 #endif /* not SIGTSTP */ | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5858 #ifdef MSDOS |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5859 /* We must remain inside the screen area when the internal terminal |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5860 is used. Note that [Enter] is not echoed by dos. */ |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5861 cursor_to (0, 0); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5862 #endif |
| 518 | 5863 printf ("Auto-save? (y or n) "); |
| 5864 fflush (stdout); | |
| 5865 if (((c = getchar ()) & ~040) == 'Y') | |
|
4282
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
5866 { |
|
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
5867 Fdo_auto_save (Qt, Qnil); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5868 #ifdef MSDOS |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5869 printf ("\r\nAuto-save done"); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5870 #else /* not MSDOS */ |
|
4282
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
5871 printf ("Auto-save done\n"); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5872 #endif /* not MSDOS */ |
|
4282
af81ea5c816e
(kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents:
4255
diff
changeset
|
5873 } |
| 518 | 5874 while (c != '\n') c = getchar (); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5875 #ifdef MSDOS |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5876 printf ("\r\nAbort? (y or n) "); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5877 #else /* not MSDOS */ |
| 518 | 5878 #ifdef VMS |
| 5879 printf ("Abort (and enter debugger)? (y or n) "); | |
| 5880 #else /* not VMS */ | |
| 5881 printf ("Abort (and dump core)? (y or n) "); | |
| 5882 #endif /* not VMS */ | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5883 #endif /* not MSDOS */ |
| 518 | 5884 fflush (stdout); |
| 5885 if (((c = getchar ()) & ~040) == 'Y') | |
| 5886 abort (); | |
| 5887 while (c != '\n') c = getchar (); | |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5888 #ifdef MSDOS |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5889 printf ("\r\nContinuing...\r\n"); |
|
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5890 #else /* not MSDOS */ |
| 518 | 5891 printf ("Continuing...\n"); |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
5892 #endif /* not MSDOS */ |
| 518 | 5893 fflush (stdout); |
| 5894 init_sys_modes (); | |
| 5895 } | |
| 5896 else | |
| 5897 { | |
| 5898 /* If executing a function that wants to be interrupted out of | |
| 5899 and the user has not deferred quitting by binding `inhibit-quit' | |
| 5900 then quit right away. */ | |
| 5901 if (immediate_quit && NILP (Vinhibit_quit)) | |
| 5902 { | |
| 5903 immediate_quit = 0; | |
| 5904 sigfree (); | |
| 5905 Fsignal (Qquit, Qnil); | |
| 5906 } | |
| 5907 else | |
| 5908 /* Else request quit when it's safe */ | |
| 5909 Vquit_flag = Qt; | |
| 5910 } | |
| 5911 | |
| 5912 if (waiting_for_input && !echoing) | |
| 5913 quit_throw_to_read_char (); | |
| 5914 | |
| 5915 errno = old_errno; | |
| 5916 } | |
| 5917 | |
| 5918 /* Handle a C-g by making read_char return C-g. */ | |
| 5919 | |
| 5920 quit_throw_to_read_char () | |
| 5921 { | |
| 5922 quit_error_check (); | |
| 5923 sigfree (); | |
| 5924 /* Prevent another signal from doing this before we finish. */ | |
| 650 | 5925 clear_waiting_for_input (); |
| 518 | 5926 input_pending = 0; |
| 5927 | |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
5928 Vunread_command_events = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5929 unread_command_char = -1; |
| 518 | 5930 |
|
2340
f19f4582c04d
* keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents:
2338
diff
changeset
|
5931 #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
|
5932 /* 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
|
5933 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
|
5934 abort (); |
|
f19f4582c04d
* keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents:
2338
diff
changeset
|
5935 #endif |
|
5178
e2ebd4e12279
(quit_throw_to_read_char):
Richard M. Stallman <rms@gnu.org>
parents:
5133
diff
changeset
|
5936 #ifdef MULTI_FRAME |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5937 { |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5938 Lisp_Object frame; |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5939 |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5940 if (!current_perdisplay) |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5941 abort (); |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5942 frame = current_perdisplay->internal_last_event_frame; |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5943 if (FRAMEP (frame) && XFRAME (frame) != selected_frame) |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5944 Fhandle_switch_frame (make_lispy_switch_frame (frame)); |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
5945 } |
|
5178
e2ebd4e12279
(quit_throw_to_read_char):
Richard M. Stallman <rms@gnu.org>
parents:
5133
diff
changeset
|
5946 #endif |
|
2340
f19f4582c04d
* keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents:
2338
diff
changeset
|
5947 |
| 518 | 5948 _longjmp (getcjmp, 1); |
| 5949 } | |
| 5950 | |
| 5951 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0, | |
| 5952 "Set mode of reading keyboard input.\n\ | |
|
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
5953 First arg INTERRUPT non-nil means use input interrupts;\n\ |
|
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
5954 nil means use CBREAK mode.\n\ |
|
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
5955 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\ |
| 518 | 5956 (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
|
5957 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
|
5958 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
|
5959 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
|
5960 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
|
5961 See also `current-input-mode'.") |
| 518 | 5962 (interrupt, flow, meta, quit) |
| 5963 Lisp_Object interrupt, flow, meta, quit; | |
| 5964 { | |
| 5965 if (!NILP (quit) | |
|
9124
8ed50a8939e9
(echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents:
8994
diff
changeset
|
5966 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400)) |
|
4471
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
5967 error ("set-input-mode: QUIT must be an ASCII character"); |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
5968 |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
5969 #ifdef POLL_FOR_INPUT |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
5970 stop_polling (); |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
5971 #endif |
| 518 | 5972 |
| 5973 reset_sys_modes (); | |
| 5974 #ifdef SIGIO | |
| 5975 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 5976 #ifdef NO_SOCK_SIGIO | |
| 5977 if (read_socket_hook) | |
| 5978 interrupt_input = 0; /* No interrupts if reading from a socket. */ | |
| 5979 else | |
| 5980 #endif /* NO_SOCK_SIGIO */ | |
| 5981 interrupt_input = !NILP (interrupt); | |
| 5982 #else /* not SIGIO */ | |
| 5983 interrupt_input = 0; | |
| 5984 #endif /* not SIGIO */ | |
| 5985 /* Our VMS input only works by interrupts, as of now. */ | |
| 5986 #ifdef VMS | |
| 5987 interrupt_input = 1; | |
| 5988 #endif | |
| 5989 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
|
5990 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
|
5991 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
|
5992 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
|
5993 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
|
5994 else |
|
5275561e6b0a
(read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents:
2651
diff
changeset
|
5995 meta_key = 2; |
| 518 | 5996 if (!NILP (quit)) |
| 5997 /* Don't let this value be out of range. */ | |
| 5998 quit_char = XINT (quit) & (meta_key ? 0377 : 0177); | |
| 5999 | |
| 6000 init_sys_modes (); | |
|
4471
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
6001 |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
6002 #ifdef POLL_FOR_INPUT |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
6003 poll_suppress_count = 1; |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
6004 start_polling (); |
|
31c5586e9d36
(Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
4417
diff
changeset
|
6005 #endif |
| 518 | 6006 return Qnil; |
| 6007 } | |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6008 |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6009 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
|
6010 "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
|
6011 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
|
6012 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
|
6013 nil, Emacs is using CBREAK mode.\n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6014 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
|
6015 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
|
6016 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
|
6017 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
|
6018 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
|
6019 all 8 bits as the character code.\n\ |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6020 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
|
6021 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
|
6022 `set-input-mode'.") |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6023 () |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6024 { |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6025 Lisp_Object val[4]; |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6026 |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6027 val[0] = interrupt_input ? Qt : Qnil; |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6028 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
|
6029 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
6030 XSETFASTINT (val[3], quit_char); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6031 |
|
3116
05c3ef28bb6b
(Fcurrent_input_mode): Fix the call to Flist.
Richard M. Stallman <rms@gnu.org>
parents:
3104
diff
changeset
|
6032 return Flist (sizeof (val) / sizeof (val[0]), val); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6033 } |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6034 |
| 518 | 6035 |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6036 /* |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6037 * Set up a perdisplay object with reasonable initial values. |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6038 */ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6039 void |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6040 init_perdisplay (perd) |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6041 PERDISPLAY *perd; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6042 { |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6043 perd->Vprefix_arg = Qnil; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6044 perd->Vcurrent_prefix_arg = Qnil; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6045 perd->kbd_buffer |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6046 = (struct input_event *)xmalloc (KBD_BUFFER_SIZE |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6047 * sizeof (struct input_event)); |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6048 perd->kbd_fetch_ptr = perd->kbd_buffer; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6049 perd->kbd_store_ptr = perd->kbd_buffer; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6050 perd->kbd_buffer_frame_or_window |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6051 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil); |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6052 #ifdef MULTI_FRAME |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6053 /* This means that command_loop_1 won't try to select anything the first |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6054 time through. */ |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6055 perd->internal_last_event_frame = Qnil; |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6056 #endif |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6057 perd->Vlast_event_frame = Qnil; |
|
10701
358030fd130c
(command_loop_1): Put back cancel_echoing call, if there's a perdisplay for it
Karl Heuer <kwzh@gnu.org>
parents:
10677
diff
changeset
|
6058 perd->immediate_echo = 0; |
|
358030fd130c
(command_loop_1): Put back cancel_echoing call, if there's a perdisplay for it
Karl Heuer <kwzh@gnu.org>
parents:
10677
diff
changeset
|
6059 perd->echoptr = perd->echobuf; |
|
358030fd130c
(command_loop_1): Put back cancel_echoing call, if there's a perdisplay for it
Karl Heuer <kwzh@gnu.org>
parents:
10677
diff
changeset
|
6060 perd->echo_after_prompt = -1; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6061 } |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6062 |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6063 /* |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6064 * Destroy the contents of a perdisplay object, but not the object itself. |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6065 * We use this just before deleteing it, or if we're going to initialize |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6066 * it a second time. |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6067 */ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6068 void |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6069 wipe_perdisplay (perd) |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6070 PERDISPLAY *perd; |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6071 { |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6072 xfree (perd->kbd_buffer); |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6073 } |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6074 |
| 518 | 6075 init_keyboard () |
| 6076 { | |
| 6077 /* This is correct before outermost invocation of the editor loop */ | |
| 6078 command_loop_level = -1; | |
| 6079 immediate_quit = 0; | |
| 6080 quit_char = Ctl ('g'); | |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
6081 Vunread_command_events = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6082 unread_command_char = -1; |
| 518 | 6083 total_keys = 0; |
|
1262
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
6084 recent_keys_index = 0; |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
6085 #ifdef HAVE_MOUSE |
|
9618
9fe4987e4896
(do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents:
9607
diff
changeset
|
6086 do_mouse_tracking = Qnil; |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
6087 #endif |
| 518 | 6088 input_pending = 0; |
| 6089 | |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6090 #ifndef MULTI_PERDISPLAY |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
6091 if (initialized) |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6092 wipe_perdisplay (&the_only_perdisplay); |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6093 init_perdisplay (&the_only_perdisplay); |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6094 #endif |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
6095 |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
6096 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system)) |
| 518 | 6097 { |
| 6098 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
|
6099 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS) |
| 518 | 6100 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and |
| 6101 SIGQUIT and we can't tell which one it will give us. */ | |
| 6102 signal (SIGQUIT, interrupt_signal); | |
| 6103 #endif /* HAVE_TERMIO */ | |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
6104 } |
| 518 | 6105 /* Note SIGIO has been undef'd if FIONREAD is missing. */ |
| 6106 #ifdef SIGIO | |
|
7957
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
6107 if (!noninteractive) |
|
a1404ed5d012
(echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7868
diff
changeset
|
6108 signal (SIGIO, input_available_signal); |
|
1008
f1df63f98e5c
* keyboard.c (init_keyboard): Changed "#endif SIGIO" to
Jim Blandy <jimb@redhat.com>
parents:
985
diff
changeset
|
6109 #endif /* SIGIO */ |
| 518 | 6110 |
| 6111 /* Use interrupt input by default, if it works and noninterrupt input | |
| 6112 has deficiencies. */ | |
| 6113 | |
| 6114 #ifdef INTERRUPT_INPUT | |
| 6115 interrupt_input = 1; | |
| 6116 #else | |
| 6117 interrupt_input = 0; | |
| 6118 #endif | |
| 6119 | |
| 6120 /* Our VMS input only works by interrupts, as of now. */ | |
| 6121 #ifdef VMS | |
| 6122 interrupt_input = 1; | |
| 6123 #endif | |
| 6124 | |
| 6125 sigfree (); | |
| 6126 dribble = 0; | |
| 6127 | |
| 6128 if (keyboard_init_hook) | |
| 6129 (*keyboard_init_hook) (); | |
| 6130 | |
| 6131 #ifdef POLL_FOR_INPUT | |
| 6132 poll_suppress_count = 1; | |
| 6133 start_polling (); | |
| 6134 #endif | |
| 6135 } | |
| 6136 | |
| 6137 /* This type's only use is in syms_of_keyboard, to initialize the | |
| 6138 event header symbols and put properties on them. */ | |
| 6139 struct event_head { | |
| 6140 Lisp_Object *var; | |
| 6141 char *name; | |
| 6142 Lisp_Object *kind; | |
| 6143 }; | |
| 6144 | |
| 6145 struct event_head head_table[] = { | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
6146 &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
|
6147 &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
|
6148 &Qswitch_frame, "switch-frame", &Qswitch_frame, |
|
9215
fa3883c219ea
(head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents:
9124
diff
changeset
|
6149 &Qdelete_frame, "delete-frame", &Qdelete_frame, |
|
9729
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
6150 &Qiconify_frame, "iconify-frame", &Qiconify_frame, |
|
75b481d9773e
(kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents:
9689
diff
changeset
|
6151 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible, |
| 518 | 6152 }; |
| 6153 | |
| 6154 syms_of_keyboard () | |
| 6155 { | |
|
4094
1dae74fd93d2
(Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4088
diff
changeset
|
6156 Qdisabled_command_hook = intern ("disabled-command-hook"); |
|
1dae74fd93d2
(Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4088
diff
changeset
|
6157 staticpro (&Qdisabled_command_hook); |
|
1dae74fd93d2
(Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4088
diff
changeset
|
6158 |
| 518 | 6159 Qself_insert_command = intern ("self-insert-command"); |
| 6160 staticpro (&Qself_insert_command); | |
| 6161 | |
| 6162 Qforward_char = intern ("forward-char"); | |
| 6163 staticpro (&Qforward_char); | |
| 6164 | |
| 6165 Qbackward_char = intern ("backward-char"); | |
| 6166 staticpro (&Qbackward_char); | |
| 6167 | |
| 6168 Qdisabled = intern ("disabled"); | |
| 6169 staticpro (&Qdisabled); | |
| 6170 | |
|
4065
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
6171 Qundefined = intern ("undefined"); |
|
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
6172 staticpro (&Qundefined); |
|
adf973a863dd
(Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3994
diff
changeset
|
6173 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6174 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
|
6175 staticpro (&Qpre_command_hook); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6176 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6177 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
|
6178 staticpro (&Qpost_command_hook); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6179 |
|
10070
def41008c136
(command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents:
10060
diff
changeset
|
6180 Qdeferred_action_function = intern ("deferred-action-function"); |
|
def41008c136
(command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents:
10060
diff
changeset
|
6181 staticpro (&Qdeferred_action_function); |
|
def41008c136
(command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents:
10060
diff
changeset
|
6182 |
|
5674
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
6183 Qcommand_hook_internal = intern ("command-hook-internal"); |
|
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
6184 staticpro (&Qcommand_hook_internal); |
|
bb8bfab97970
(read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents:
5614
diff
changeset
|
6185 |
| 518 | 6186 Qfunction_key = intern ("function-key"); |
| 6187 staticpro (&Qfunction_key); | |
|
1322
5f327f1dddd3
* keyboard.c (modify_event_symbol): Make sure that the unmodified
Jim Blandy <jimb@redhat.com>
parents:
1310
diff
changeset
|
6188 Qmouse_click = intern ("mouse-click"); |
| 518 | 6189 staticpro (&Qmouse_click); |
| 6190 | |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
6191 Qmenu_enable = intern ("menu-enable"); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
6192 staticpro (&Qmenu_enable); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
6193 |
| 518 | 6194 Qmode_line = intern ("mode-line"); |
| 6195 staticpro (&Qmode_line); | |
| 732 | 6196 Qvertical_line = intern ("vertical-line"); |
| 6197 staticpro (&Qvertical_line); | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
6198 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
|
6199 staticpro (&Qvertical_scroll_bar); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
6200 Qmenu_bar = intern ("menu-bar"); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
6201 staticpro (&Qmenu_bar); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
6202 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
6203 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
|
6204 staticpro (&Qabove_handle); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
6205 Qhandle = intern ("handle"); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
6206 staticpro (&Qhandle); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
6207 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
|
6208 staticpro (&Qbelow_handle); |
| 518 | 6209 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
6210 Qevent_kind = intern ("event-kind"); |
| 518 | 6211 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
|
6212 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
|
6213 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
|
6214 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
|
6215 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
|
6216 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
|
6217 staticpro (&Qmodifier_cache); |
| 518 | 6218 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
6219 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
|
6220 staticpro (&Qrecompute_lucid_menubar); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
6221 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
|
6222 staticpro (&Qactivate_menubar_hook); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
6223 |
|
7487
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
6224 Qpolling_period = intern ("polling-period"); |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
6225 staticpro (&Qpolling_period); |
|
a7ff1a4b4e21
(syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents:
7447
diff
changeset
|
6226 |
| 518 | 6227 { |
| 6228 struct event_head *p; | |
| 6229 | |
| 6230 for (p = head_table; | |
| 6231 p < head_table + (sizeof (head_table) / sizeof (head_table[0])); | |
| 6232 p++) | |
| 6233 { | |
| 6234 *p->var = intern (p->name); | |
| 6235 staticpro (p->var); | |
| 6236 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
|
6237 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil)); |
| 518 | 6238 } |
| 6239 } | |
| 6240 | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
6241 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
|
6242 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
|
6243 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
6244 { |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
6245 int i; |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
6246 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
|
6247 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
6248 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
|
6249 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
|
6250 if (modifier_names[i]) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6251 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
|
6252 staticpro (&modifier_symbols); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
6253 } |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
6254 |
|
1262
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
6255 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
|
6256 staticpro (&recent_keys); |
|
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
6257 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
6258 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
|
6259 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
|
6260 |
|
4773
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
6261 Qextended_command_history = intern ("extended-command-history"); |
|
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
6262 Fset (Qextended_command_history, Qnil); |
|
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
6263 staticpro (&Qextended_command_history); |
|
ae7c67879859
(Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
6264 |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
6265 accent_key_syms = Qnil; |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
6266 staticpro (&accent_key_syms); |
|
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
6267 |
| 518 | 6268 func_key_syms = Qnil; |
| 6269 staticpro (&func_key_syms); | |
| 6270 | |
|
6893
b97b29f3ea7a
(syms_of_keyboard): Init and staticpro system_key_syms.
Richard M. Stallman <rms@gnu.org>
parents:
6891
diff
changeset
|
6271 system_key_syms = Qnil; |
|
b97b29f3ea7a
(syms_of_keyboard): Init and staticpro system_key_syms.
Richard M. Stallman <rms@gnu.org>
parents:
6891
diff
changeset
|
6272 staticpro (&system_key_syms); |
|
b97b29f3ea7a
(syms_of_keyboard): Init and staticpro system_key_syms.
Richard M. Stallman <rms@gnu.org>
parents:
6891
diff
changeset
|
6273 |
| 518 | 6274 mouse_syms = Qnil; |
| 6275 staticpro (&mouse_syms); | |
| 6276 | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
6277 unread_switch_frame = Qnil; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
6278 staticpro (&unread_switch_frame); |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
6279 |
| 518 | 6280 defsubr (&Sread_key_sequence); |
| 6281 defsubr (&Srecursive_edit); | |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
6282 #ifdef HAVE_MOUSE |
| 518 | 6283 defsubr (&Strack_mouse); |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
6284 #endif |
| 518 | 6285 defsubr (&Sinput_pending_p); |
| 6286 defsubr (&Scommand_execute); | |
| 6287 defsubr (&Srecent_keys); | |
| 6288 defsubr (&Sthis_command_keys); | |
| 6289 defsubr (&Ssuspend_emacs); | |
| 6290 defsubr (&Sabort_recursive_edit); | |
| 6291 defsubr (&Sexit_recursive_edit); | |
| 6292 defsubr (&Srecursion_depth); | |
| 6293 defsubr (&Stop_level); | |
| 6294 defsubr (&Sdiscard_input); | |
| 6295 defsubr (&Sopen_dribble_file); | |
| 6296 defsubr (&Sset_input_mode); | |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6297 defsubr (&Scurrent_input_mode); |
| 518 | 6298 defsubr (&Sexecute_extended_command); |
| 6299 | |
| 6300 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
|
6301 "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
|
6302 |
|
8039
7cc73292df36
(syms_of_keyboard): Don't staticpro the same var twice.
Karl Heuer <kwzh@gnu.org>
parents:
7999
diff
changeset
|
6303 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char, |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6304 "Last input event that was part of a command."); |
| 518 | 6305 |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
6306 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
|
6307 "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
|
6308 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
|
6309 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
|
6310 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
|
6311 |
| 518 | 6312 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
|
6313 "Last input event."); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6314 |
|
8039
7cc73292df36
(syms_of_keyboard): Don't staticpro the same var twice.
Karl Heuer <kwzh@gnu.org>
parents:
7999
diff
changeset
|
6315 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char, |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6316 "Last input event."); |
| 518 | 6317 |
|
7168
82bb839ac5c6
(Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents:
7098
diff
changeset
|
6318 DEFVAR_LISP ("unread-command-events", &Vunread_command_events, |
|
1960
6051ba81a938
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1947
diff
changeset
|
6319 "List of objects to be read as next command input events."); |
| 518 | 6320 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6321 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
|
6322 "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
|
6323 |
| 518 | 6324 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char, |
| 6325 "Meta-prefix character code. Meta-foo as command input\n\ | |
| 6326 turns into this character followed by foo."); | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
6327 XSETINT (meta_prefix_char, 033); |
| 518 | 6328 |
| 6329 DEFVAR_LISP ("last-command", &last_command, | |
| 6330 "The last command executed. Normally a symbol with a function definition,\n\ | |
| 6331 but can be whatever was found in the keymap, or whatever the variable\n\ | |
|
10060
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6332 `this-command' was set to by that command.\n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6333 \n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6334 The value `mode-exit' is special; it means that the previous command\n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6335 read an event that told it to exit, and it did so and unread that event.\n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6336 In other words, the present command is the event that made the previous\n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6337 command exit.\n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6338 \n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6339 The value `kill-region' is special; it means that the previous command\n\ |
|
145bf101cccc
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
9977
diff
changeset
|
6340 was a kill command."); |
| 518 | 6341 last_command = Qnil; |
| 6342 | |
| 6343 DEFVAR_LISP ("this-command", &this_command, | |
| 6344 "The command now being executed.\n\ | |
| 6345 The command can set this variable; whatever is put here\n\ | |
| 6346 will be in `last-command' during the following command."); | |
| 6347 this_command = Qnil; | |
| 6348 | |
| 6349 DEFVAR_INT ("auto-save-interval", &auto_save_interval, | |
| 6350 "*Number of keyboard input characters between auto-saves.\n\ | |
| 6351 Zero means disable autosaving due to number of characters typed."); | |
| 6352 auto_save_interval = 300; | |
| 6353 | |
| 6354 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, | |
| 6355 "*Number of seconds idle time before auto-save.\n\ | |
|
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
6356 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
|
6357 After auto-saving due to this many seconds of idle time,\n\ |
| 701 | 6358 Emacs also does a garbage collection if that seems to be warranted."); |
|
9311
6e40f49dc6fb
(read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents:
9272
diff
changeset
|
6359 XSETFASTINT (Vauto_save_timeout, 30); |
| 518 | 6360 |
| 6361 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes, | |
| 6362 "*Nonzero means echo unfinished commands after this many seconds of pause."); | |
| 6363 echo_keystrokes = 1; | |
| 6364 | |
| 6365 DEFVAR_INT ("polling-period", &polling_period, | |
| 6366 "*Interval between polling for input during Lisp execution.\n\ | |
| 6367 The reason for polling is to make C-g work to stop a running program.\n\ | |
| 6368 Polling is needed only when using X windows and SIGIO does not work.\n\ | |
| 6369 Polling is automatically disabled in all other cases."); | |
| 6370 polling_period = 2; | |
| 6371 | |
|
3993
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
6372 DEFVAR_LISP ("double-click-time", &Vdouble_click_time, |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
6373 "*Maximum time between mouse clicks to make a double-click.\n\ |
|
3993
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
6374 Measured in milliseconds. nil means disable double-click recognition;\n\ |
|
992a1abeb6cd
* keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents:
3972
diff
changeset
|
6375 t means double-clicks have no time limit and are detected\n\ |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
6376 by position only."); |
|
3994
df443e5f391e
Fix initialization of Vdouble_click_time in syms_of_keyboard.
Jim Blandy <jimb@redhat.com>
parents:
3993
diff
changeset
|
6377 Vdouble_click_time = make_number (500); |
|
3861
fc8c92b69513
* keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents:
3809
diff
changeset
|
6378 |
|
9396
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
6379 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus, |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
6380 "*Non-nil means inhibit local map menu bar menus."); |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
6381 inhibit_local_menu_bar_menus = 0; |
|
c5d9742c47b3
(inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9311
diff
changeset
|
6382 |
| 518 | 6383 DEFVAR_INT ("num-input-keys", &num_input_keys, |
|
10381
8e8259e052ed
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10309
diff
changeset
|
6384 "Number of complete keys read from the keyboard so far."); |
| 518 | 6385 num_input_keys = 0; |
| 6386 | |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6387 DEFVAR_LISP ("help-char", &Vhelp_char, |
| 518 | 6388 "Character to recognize as meaning Help.\n\ |
| 6389 When it is read, do `(eval help-form)', and display result if it's a string.\n\ | |
| 6390 If the value of `help-form' is nil, this char can be read normally."); | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
6391 XSETINT (Vhelp_char, Ctl ('H')); |
| 518 | 6392 |
| 6393 DEFVAR_LISP ("help-form", &Vhelp_form, | |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6394 "Form to execute when character `help-char' is read.\n\ |
| 518 | 6395 If the form returns a string, that string is displayed.\n\ |
| 6396 If `help-form' is nil, the help char is not recognized."); | |
| 6397 Vhelp_form = Qnil; | |
| 6398 | |
|
3972
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6399 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command, |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6400 "Command to run when `help-char' character follows a prefix key.\n\ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6401 This command is used only when there is no actual binding\n\ |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6402 for that character after that prefix key."); |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6403 Vprefix_help_command = Qnil; |
|
e49ff3115e7d
(read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents:
3929
diff
changeset
|
6404 |
| 518 | 6405 DEFVAR_LISP ("top-level", &Vtop_level, |
| 6406 "Form to evaluate when Emacs starts up.\n\ | |
| 6407 Useful to set before you dump a modified Emacs."); | |
| 6408 Vtop_level = Qnil; | |
| 6409 | |
| 6410 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, | |
| 6411 "String used as translate table for keyboard input, or nil.\n\ | |
| 6412 Each character is looked up in this string and the contents used instead.\n\ | |
| 6413 If string is of length N, character codes N and up are untranslated."); | |
| 6414 Vkeyboard_translate_table = Qnil; | |
| 6415 | |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6416 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map, |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6417 "Keymap of key translations that can override keymaps.\n\ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6418 This keymap works like `function-key-map', but comes after that,\n\ |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6419 and applies even for keys that have ordinary bindings."); |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6420 Vkey_translation_map = Qnil; |
|
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6421 |
|
6101
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
6422 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend, |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
6423 "Non-nil means to always spawn a subshell instead of suspending,\n\ |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
6424 even if the operating system has support for stopping a process."); |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
6425 cannot_suspend = 0; |
|
9b32ddce536b
(Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents:
6096
diff
changeset
|
6426 |
| 518 | 6427 DEFVAR_BOOL ("menu-prompting", &menu_prompting, |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
6428 "Non-nil means prompt with menus when appropriate.\n\ |
| 518 | 6429 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
|
6430 for elements that have prompt strings.\n\ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
6431 The menu is displayed on the screen\n\ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
6432 if X menus were enabled at configuration\n\ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
6433 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
|
6434 Otherwise, menu prompting uses the echo area."); |
| 518 | 6435 menu_prompting = 1; |
| 6436 | |
| 6437 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char, | |
| 6438 "Character to see next line of menu prompt.\n\ | |
| 6439 Type this character while in a menu prompt to rotate around the lines of it."); | |
|
9272
0a0998c4d4b6
(command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents:
9228
diff
changeset
|
6440 XSETINT (menu_prompt_more_char, ' '); |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
6441 |
|
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
6442 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
|
6443 "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
|
6444 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
|
6445 character it reads. For example, after evaluating the expression\n\ |
|
10602
05a3cfc7a5ba
(syms_of_keyboard): Fix missing backslashes.
Karl Heuer <kwzh@gnu.org>
parents:
10579
diff
changeset
|
6446 (setq extra-keyboard-modifiers ?\\C-x)\n\ |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6447 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
|
6448 \n\ |
|
10602
05a3cfc7a5ba
(syms_of_keyboard): Fix missing backslashes.
Karl Heuer <kwzh@gnu.org>
parents:
10579
diff
changeset
|
6449 Note that the character ?\\C-@, equivalent to the integer zero, does\n\ |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6450 not count as a control character; rather, it counts as a character\n\ |
|
4600
a4d11a20b724
(kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents:
4558
diff
changeset
|
6451 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\ |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
6452 cancels any modification."); |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
6453 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
|
6454 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6455 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
|
6456 "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
|
6457 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
|
6458 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
|
6459 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
|
6460 Vdeactivate_mark = Qnil; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6461 |
|
5894
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
6462 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal, |
|
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
6463 "Temporary storage of pre-command-hook or post-command-hook."); |
|
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
6464 Vcommand_hook_internal = Qnil; |
|
89c310941fcb
(syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents:
5889
diff
changeset
|
6465 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6466 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, |
|
7433
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6467 "Normal hook run before each command is executed.\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6468 While the hook is run, its value is temporarily set to nil\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6469 to avoid an unbreakable infinite loop if a hook function gets an error.\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6470 As a result, a hook function cannot straightforwardly alter the value of\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6471 `pre-command-hook'. See the Emacs Lisp manual for a way of\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6472 implementing hook functions that alter the set of hook functions."); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6473 Vpre_command_hook = Qnil; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6474 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6475 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, |
|
7433
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6476 "Normal hook run after each command is executed.\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6477 While the hook is run, its value is temporarily set to nil\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6478 to avoid an unbreakable infinite loop if a hook function gets an error.\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6479 As a result, a hook function cannot straightforwardly alter the value of\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6480 `post-command-hook'. See the Emacs Lisp manual for a way of\n\ |
|
cc5e8709ab89
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7428
diff
changeset
|
6481 implementing hook functions that alter the set of hook functions."); |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
6482 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
|
6483 |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
6484 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
|
6485 "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
|
6486 Vlucid_menu_bar_dirty_flag = Qnil; |
|
4088
bea0be5ab35e
(Vhelp_menu_bar_map): New var.
Richard M. Stallman <rms@gnu.org>
parents:
4065
diff
changeset
|
6487 |
|
4115
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
6488 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items, |
|
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
6489 "List of menu bar items to move to the end of the menu bar.\n\ |
|
4255
4b65e1ff27b8
(command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents:
4137
diff
changeset
|
6490 The elements of the list are event types that may have menu bar bindings."); |
|
4115
4aafcdc3d9e7
(Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents:
4106
diff
changeset
|
6491 Vmenu_bar_final_items = Qnil; |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
6492 |
|
5614
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
6493 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map, |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
6494 "Keymap that overrides all other local keymaps.\n\ |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
6495 If this variable is non-nil, it is used as a keymap instead of the\n\ |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
6496 buffer's local map, and the minor mode keymaps and text property keymaps."); |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
6497 Voverriding_local_map = Qnil; |
|
16074afb03df
(Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5588
diff
changeset
|
6498 |
|
9607
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6499 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag, |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6500 "Non-nil means `overriding-local-map' applies to the menu bar.\n\ |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6501 Otherwise, the menu bar continues to reflect the buffer's local map\n\ |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6502 and the minor mode maps regardless of `overriding-local-map'."); |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6503 Voverriding_local_map_menu_flag = Qnil; |
|
081040eb1863
(Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6504 |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
6505 #ifdef HAVE_MOUSE |
|
9881
02cd4dde69e1
(tracking_off): Test old value with NILP.
Richard M. Stallman <rms@gnu.org>
parents:
9864
diff
changeset
|
6506 DEFVAR_LISP ("track-mouse", &do_mouse_tracking, |
|
5225
95a44cfa9e17
(make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents:
5224
diff
changeset
|
6507 "*Non-nil means generate motion events for mouse motion."); |
|
9840
81829106d303
(EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents:
9830
diff
changeset
|
6508 #endif |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
6509 |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
6510 DEFVAR_LISP ("system-key-alist", &Vsystem_key_alist, |
|
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
6511 "Alist of system-specific X windows key symbols.\n\ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
6512 Each element should have the form (N . SYMBOL) where N is the\n\ |
|
6096
443b78042b86
(Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
6053
diff
changeset
|
6513 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\ |
|
5513
d7770758acfd
(interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents:
5394
diff
changeset
|
6514 and SYMBOL is its name."); |
|
7868
4951edd1b764
(syms_of_keyboard): Properly init Vsystem_key_alist.
Richard M. Stallman <rms@gnu.org>
parents:
7857
diff
changeset
|
6515 Vsystem_key_alist = Qnil; |
|
8302
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6516 |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6517 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list, |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6518 "List of deferred actions to be performed at a later time.\n\ |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6519 The precise format isn't relevant here; we just check whether it is nil."); |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6520 Vdeferred_action_list = Qnil; |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6521 |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6522 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function, |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6523 "Function to call to handle deferred actions, after each command.\n\ |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6524 This function is called with no arguments after each command\n\ |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6525 whenever `deferred-action-list' is non-nil."); |
|
4e5626d0b962
(Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
8247
diff
changeset
|
6526 Vdeferred_action_function = Qnil; |
|
10654
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6527 |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6528 DEFVAR_DISPLAY ("prefix-arg", Vprefix_arg, |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6529 "The value of the prefix argument for the next editing command.\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6530 It may be a number, or the symbol `-' for just a minus sign as arg,\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6531 or a list whose car is a number for just one or more C-U's\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6532 or nil if no argument has been specified.\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6533 \n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6534 You cannot examine this variable to find the argument for this command\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6535 since it has been set to nil by the time you can look.\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6536 Instead, you should use the variable `current-prefix-arg', although\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6537 normally commands can get this prefix argument with (interactive \"P\")."); |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6538 |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6539 DEFVAR_DISPLAY ("current-prefix-arg", Vcurrent_prefix_arg, |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6540 "The value of the prefix argument for this editing command.\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6541 It may be a number, or the symbol `-' for just a minus sign as arg,\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6542 or a list whose car is a number for just one or more C-U's\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6543 or nil if no argument has been specified.\n\ |
|
012591ef4e64
(syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents:
10635
diff
changeset
|
6544 This is what `(interactive \"P\")' returns."); |
|
10677
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6545 |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6546 DEFVAR_DISPLAY ("last-event-frame", Vlast_event_frame, |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6547 "The frame in which the most recently read event occurred.\n\ |
|
f614ba745b6a
(internal_last_event_frame, Vlast_event_frame): Deleted; now part of
Karl Heuer <kwzh@gnu.org>
parents:
10656
diff
changeset
|
6548 If the last event came from a keyboard macro, this is set to `macro'."); |
| 518 | 6549 } |
| 6550 | |
| 6551 keys_of_keyboard () | |
| 6552 { | |
| 6553 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs"); | |
| 6554 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs"); | |
| 6555 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit"); | |
| 6556 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit"); | |
| 6557 initial_define_key (meta_map, 'x', "execute-extended-command"); | |
| 6558 } |
