annotate src/keyboard.c @ 3920:81d29cf5b232

* keyboard.c (read_char): Don't do idle autosaves if we're not interactive.
author Jim Blandy <jimb@redhat.com>
date Tue, 29 Jun 1993 22:46:26 +0000
parents d8eb17d07558
children d620db2bc420
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Keyboard and mouse input; editor command loop.
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993 Free Software Foundation, Inc.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4 This file is part of GNU Emacs.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 any later version.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 GNU General Public License for more details.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20 /* Allow config.h to undefine symbols found here. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 #include <signal.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23 #include "config.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
24 #include <stdio.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 #undef NULL
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26 #include "termchar.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
27 #include "termopts.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
28 #include "lisp.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29 #include "termhooks.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30 #include "macros.h"
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
31 #include "frame.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 #include "window.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33 #include "commands.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 #include "buffer.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 #include "disptab.h"
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
36 #include "dispextern.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37 #include "keyboard.h"
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
38 #include "intervals.h"
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
39 #include "blockinput.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 #include <setjmp.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 #include <errno.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
42
562
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
43 #ifndef VMS
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
44 #include <sys/ioctl.h>
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
45 #endif
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
46
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
47 #include "syssignal.h"
1046
d4b1e5db2b2a * keyboard.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents: 1008
diff changeset
48 #include "systty.h"
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
49 #include "systime.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
50
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
51 extern int errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
52
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
53 /* Variables for blockinput.h: */
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
54
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
55 /* Non-zero if interrupt input is blocked right now. */
2481
a7a0f89c1f64 * keyboard.c (interrupt_input_blocked, interrupt_input_pending):
Jim Blandy <jimb@redhat.com>
parents: 2439
diff changeset
56 int interrupt_input_blocked;
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
57
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
58 /* Nonzero means an input interrupt has arrived
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
59 during the current critical section. */
2481
a7a0f89c1f64 * keyboard.c (interrupt_input_blocked, interrupt_input_pending):
Jim Blandy <jimb@redhat.com>
parents: 2439
diff changeset
60 int interrupt_input_pending;
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
61
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
62
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
63 #ifdef HAVE_X_WINDOWS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
64 extern Lisp_Object Vmouse_grabbed;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
65
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
66 /* Make all keyboard buffers much bigger when using X windows. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
67 #define KBD_BUFFER_SIZE 4096
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
68 #else /* No X-windows, character input */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
69 #define KBD_BUFFER_SIZE 256
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
70 #endif /* No X-windows */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
71
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
72 /* Following definition copied from eval.c */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
73
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74 struct backtrace
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
75 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
76 struct backtrace *next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
77 Lisp_Object *function;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
78 Lisp_Object *args; /* Points to vector of args. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
79 int nargs; /* length of vector. If nargs is UNEVALLED,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
80 args points to slot holding list of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
81 unevalled args */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
82 char evalargs;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
83 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
84
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
85 /* Non-nil disable property on a command means
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86 do not execute it; call disabled-command-hook's value instead. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 Lisp_Object Qdisabled, Vdisabled_command_hook;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89 #define NUM_RECENT_KEYS (100)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90 int recent_keys_index; /* Index for storing next element into recent_keys */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91 int total_keys; /* Total number of elements stored into recent_keys */
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
92 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
94 /* Vector holding the key sequence that invoked the current command.
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
95 It is reused for each command, and it may be longer than the current
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
96 sequence; this_command_key_count indicates how many elements
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
97 actually mean something.
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
98 It's easier to staticpro a single Lisp_Object than an array. */
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
99 Lisp_Object this_command_keys;
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
100 int this_command_key_count;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102 extern int minbuf_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
103
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
104 extern struct backtrace *backtrace_list;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
105
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
106 /* Nonzero means do menu prompting. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107 static int menu_prompting;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
109 /* Character to see next line of menu prompt. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110 static Lisp_Object menu_prompt_more_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
111
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112 /* For longjmp to where kbd input is being done. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113 static jmp_buf getcjmp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 /* True while doing kbd input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 int waiting_for_input;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118 /* True while displaying for echoing. Delays C-g throwing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119 static int echoing;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
120
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
121 /* Nonzero means C-G should cause immediate error-signal. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122 int immediate_quit;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
123
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
124 /* Character to recognize as the help char. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
125 Lisp_Object help_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
126
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
127 /* Form to execute when help char is typed. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
128 Lisp_Object Vhelp_form;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
129
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
130 /* Character that causes a quit. Normally C-g.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
131
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
132 If we are running on an ordinary terminal, this must be an ordinary
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
133 ASCII char, since we want to make it our interrupt character.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
134
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
135 If we are not running on an ordinary terminal, it still needs to be
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
136 an ordinary ASCII char. This character needs to be recognized in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
137 the input interrupt handler. At this point, the keystroke is
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
138 represented as a struct input_event, while the desired quit
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
139 character is specified as a lispy event. The mapping from struct
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
140 input_events to lispy events cannot run in an interrupt handler,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141 and the reverse mapping is difficult for anything but ASCII
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142 keystrokes.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
143
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
144 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
145 ASCII character. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
146 int quit_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
147
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
148 extern Lisp_Object current_global_map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
149 extern int minibuf_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
150
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
151 /* Current depth in recursive edits. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
152 int command_loop_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
153
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
154 /* Total number of times command_loop has read a key sequence. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
155 int num_input_keys;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
156
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
157 /* Last input character read as a command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
158 Lisp_Object last_command_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
159
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
160 /* Last input character read as a command, not counting menus
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
161 reached by the mouse. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
162 Lisp_Object last_nonmenu_event;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
163
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
164 /* Last input character read for any purpose. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
165 Lisp_Object last_input_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
166
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
167 /* If not Qnil, a list of objects to be read as subsequent command input. */
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
168 Lisp_Object unread_command_events;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
170 /* If not -1, an event to be read as subsequent command input. */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
171 int unread_command_char;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
172
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
173 /* If not Qnil, this is a switch-frame event which we decided to put
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
174 off until the end of a key sequence. This should be read as the
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
175 next command input, after any unread_command_events.
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
176
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
177 read_key_sequence uses this to delay switch-frame events until the
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
178 end of the key sequence; Fread_char uses it to put off switch-frame
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
179 events until a non-ASCII event is acceptable as input. */
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
180 Lisp_Object unread_switch_frame;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
181
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
182 /* A mask of extra modifier bits to put into every keyboard char. */
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
183 int extra_keyboard_modifiers;
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
184
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185 /* Char to use as prefix when a meta character is typed in.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186 This is bound on entry to minibuffer in case ESC is changed there. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
187
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
188 Lisp_Object meta_prefix_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
190 /* Last size recorded for a current buffer which is not a minibuffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191 static int last_non_minibuf_size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192
687
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 682
diff changeset
193 /* Number of idle seconds before an auto-save and garbage collection. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 static Lisp_Object Vauto_save_timeout;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
195
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
196 /* Total number of times read_char has returned. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
197 int num_input_chars;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
199 /* Total number of times read_char has returned, outside of macros. */
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
200 int num_nonmacro_input_chars;
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
201
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
202 /* Auto-save automatically when this many characters have been typed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
203 since the last time. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
204
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
205 static int auto_save_interval;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
206
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
207 /* Value of num_nonmacro_input_chars as of last auto save. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
208
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
209 int last_auto_save;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
210
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
211 /* Last command executed by the editor command loop, not counting
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
212 commands that set the prefix argument. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
213
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
214 Lisp_Object last_command;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
215
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
216 /* The command being executed by the command loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
217 Commands may set this, and the value set will be copied into last_command
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
218 instead of the actual command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
219 Lisp_Object this_command;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
220
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
221 #ifdef MULTI_FRAME
1239
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
222 /* The frame in which the last input event occurred, or Qmacro if the
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
223 last event came from a macro. We use this to determine when to
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
224 generate switch-frame events. This may be cleared by functions
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
225 like Fselect_frame, to make sure that a switch-frame event is
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
226 generated by the next character. */
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
227 Lisp_Object internal_last_event_frame;
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
228
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
229 /* A user-visible version of the above, intended to allow users to
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
230 figure out where the last event came from, if the event doesn't
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
231 carry that information itself (i.e. if it was a character). */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
232 Lisp_Object Vlast_event_frame;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
233 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
235 /* The timestamp of the last input event we received from the X server.
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
236 X Windows wants this for selection ownership. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
237 unsigned long last_event_timestamp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
238
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
239 Lisp_Object Qself_insert_command;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
240 Lisp_Object Qforward_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
241 Lisp_Object Qbackward_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
242
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
243 /* read_key_sequence stores here the command definition of the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
244 key sequence that it reads. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
245 Lisp_Object read_key_sequence_cmd;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247 /* Form to evaluate (if non-nil) when Emacs is started. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
248 Lisp_Object Vtop_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
249
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
250 /* User-supplied string to translate input characters through. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
251 Lisp_Object Vkeyboard_translate_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
252
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
253 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
254 extern Lisp_Object Vfunction_key_map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
256 /* Non-nil means deactivate the mark at end of this command. */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
257 Lisp_Object Vdeactivate_mark;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
258
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
259 /* Menu bar specified in Lucid Emacs fashion. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
260
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
261 Lisp_Object Vlucid_menu_bar_dirty_flag;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
262 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
263
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
264 /* Hooks to run before and after each command. */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
265 Lisp_Object Qpre_command_hook, Qpost_command_hook;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
266 Lisp_Object Vpre_command_hook, Vpost_command_hook;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
267
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
268 /* File in which we write all commands we read. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
269 FILE *dribble;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
270
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
271 /* Nonzero if input is available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
272 int input_pending;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
273
2690
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
274 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
275 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
276
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
277 int meta_key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
278
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279 extern char *pending_malloc_warning;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
280
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 /* Circular buffer for pre-read keyboard input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
284 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
285
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
286 The interrupt-level event handlers will never enqueue an event on a
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
287 frame which is not in Vframe_list, and once an event is dequeued,
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
288 internal_last_event_frame or the event itself points to the frame.
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
289 So that's all fine.
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
290
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
291 But while the event is sitting in the queue, it's completely
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
292 unprotected. Suppose the user types one command which will run for
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
293 a while and then delete a frame, and then types another event at
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
294 the frame that will be deleted, before the command gets around to
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
295 it. Suppose there are no references to this frame elsewhere in
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
296 Emacs, and a GC occurs before the second event is dequeued. Now we
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
297 have an event referring to a freed frame, which will crash Emacs
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
298 when it is dequeued.
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
299
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
300 Similar things happen when an event on a scroll bar is enqueued; the
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
301 window may be deleted while the event is in the queue.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
302
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
303 So, we use this vector to protect the frame_or_window field in the
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
304 event queue. That way, they'll be dequeued as dead frames or
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
305 windows, but still valid lisp objects.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
306
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
307 If kbd_buffer[i].kind != no_event, then
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
308 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
309 == kbd_buffer[i].frame_or_window. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
310 static Lisp_Object kbd_buffer_frame_or_window;
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
311
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 /* Pointer to next available character in kbd_buffer.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
314 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 next available char is in kbd_buffer[0]. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
316 static struct input_event *kbd_fetch_ptr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
317
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318 /* Pointer to next place to store character in kbd_buffer. This
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 character should go in kbd_buffer[0]. */
1654
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
321 #ifdef __STDC__
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
322 volatile
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
323 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 static struct input_event *kbd_store_ptr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
325
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
326 /* The above pair of variables forms a "queue empty" flag. When we
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327 enqueue a non-hook event, we increment kbd_write_count. When we
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
328 dequeue a non-hook event, we increment kbd_read_count. We say that
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
329 there is input available iff the two counters are not equal.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
330
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
331 Why not just have a flag set and cleared by the enqueuing and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
332 dequeuing functions? Such a flag could be screwed up by interrupts
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
333 at inopportune times. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
335 /* If this flag is non-zero, we check mouse_moved to see when the
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
336 mouse moves, and motion events will appear in the input stream. If
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
337 it is zero, mouse motion is ignored. */
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
338 static int do_mouse_tracking;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
339
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340 /* The window system handling code should set this if the mouse has
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341 moved since the last call to the mouse_position_hook. Calling that
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342 hook should clear this. Code assumes that if this is set, it can
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343 call mouse_position_hook to get the promised position, so don't set
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 it unless you're prepared to substantiate the claim! */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 int mouse_moved;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
346
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 /* True iff there is an event in kbd_buffer, or if mouse tracking is
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 enabled and there is a new mouse position in the mouse movement
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349 buffer. Note that if this is false, that doesn't mean that there
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
350 is readable input; all the events in the queue might be button-up
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
351 events, and do_mouse_tracking might be off. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 #define EVENT_QUEUES_EMPTY \
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 /* Symbols to head events. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 Lisp_Object Qmouse_movement;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
358 Lisp_Object Qscroll_bar_movement;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
359 Lisp_Object Qswitch_frame;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
360
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361 /* Symbols to denote kinds of events. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 Lisp_Object Qfunction_key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 Lisp_Object Qmouse_click;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
364 /* Lisp_Object Qmouse_movement; - also an event header */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366 /* Properties of event headers. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
367 Lisp_Object Qevent_kind;
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
368 Lisp_Object Qevent_symbol_elements;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
369
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
370 Lisp_Object Qmenu_enable;
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
371
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
372 /* An event header symbol HEAD may have a property named
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
373 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
374 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
375 mask of modifiers applied to it. If present, this is used to help
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
376 speed up parse_modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
377 Lisp_Object Qevent_symbol_element_mask;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
378
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
379 /* An unmodified event header BASE may have a property named
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
380 Qmodifier_cache, which is an alist mapping modifier masks onto
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
381 modified versions of BASE. If present, this helps speed up
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
382 apply_modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
383 Lisp_Object Qmodifier_cache;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
384
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
385 /* Symbols to use for parts of windows. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
386 Lisp_Object Qmode_line;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
387 Lisp_Object Qvertical_line;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
388 Lisp_Object Qvertical_scroll_bar;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
389 Lisp_Object Qmenu_bar;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
390
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
391 extern Lisp_Object Qmenu_enable;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
393 Lisp_Object recursive_edit_unwind (), command_loop ();
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
394 Lisp_Object Fthis_command_keys ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
396 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
397 happens. */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
398 EMACS_TIME *input_available_clear_time;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
399
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
401 Default is 1 if INTERRUPT_INPUT is defined. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
402 int interrupt_input;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
403
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
404 /* Nonzero while interrupts are temporarily deferred during redisplay. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
405 int interrupts_deferred;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
407 /* nonzero means use ^S/^Q for flow control. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
408 int flow_control;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
409
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
410 /* Allow m- file to inhibit use of FIONREAD. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
411 #ifdef BROKEN_FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
412 #undef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
413 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
414
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
415 /* We are unable to use interrupts if FIONREAD is not available,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
416 so flush SIGIO so we won't try. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
417 #ifndef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
418 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
419 #undef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
420 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
421 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
422
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
423 /* If we support X Windows, and won't get an interrupt when input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
424 arrives from the server, poll periodically so we can detect C-g. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425 #ifdef HAVE_X_WINDOWS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
426 #ifndef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
427 #define POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
429 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
430
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431 /* Global variable declarations. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
433 /* Function for init_keyboard to call with no args (if nonzero). */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 void (*keyboard_init_hook) ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436 static int read_avail_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 static void get_input_pending ();
3453
1fd89e975a78 (read_char_menu_prompt): Now static. Add declaration.
Richard M. Stallman <rms@gnu.org>
parents: 3452
diff changeset
438 static Lisp_Object read_char_menu_prompt ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 /* > 0 if we are to echo keystrokes. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 static int echo_keystrokes;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443 /* Nonzero means echo each character as typed. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 static int immediate_echo;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
446 /* The text we're echoing in the modeline - partial key sequences,
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
447 usually. '\0'-terminated. This really shouldn't have a fixed size. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
448 static char echobuf[300];
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
449
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
450 /* Where to append more text to echobuf if we want to. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
451 static char *echoptr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
452
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
453 #define min(a,b) ((a)<(b)?(a):(b))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454 #define max(a,b) ((a)>(b)?(a):(b))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
455
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456 /* Install the string STR as the beginning of the string of echoing,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
457 so that it serves as a prompt for the next character.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
458 Also start echoing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
459
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460 echo_prompt (str)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
461 char *str;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
462 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
463 int len = strlen (str);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
464 if (len > sizeof echobuf - 4)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
465 len = sizeof echobuf - 4;
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
466 bcopy (str, echobuf, len);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
467 echoptr = echobuf + len;
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
468 *echoptr = '\0';
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
469
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
471 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
473 /* Add C to the echo string, if echoing is going on.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 C can be a character, which is printed prettily ("M-C-x" and all that
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 jazz), or a symbol, whose name is printed. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
477 echo_char (c)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478 Lisp_Object c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480 extern char *push_key_description ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 if (immediate_echo)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484 char *ptr = echoptr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486 if (ptr != echobuf)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487 *ptr++ = ' ';
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
489 /* 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
490 c = EVENT_HEAD (c);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
491
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 if (XTYPE (c) == Lisp_Int)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
493 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
494 if (ptr - echobuf > sizeof echobuf - 6)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
496
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
497 ptr = push_key_description (XINT (c), ptr);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 else if (XTYPE (c) == Lisp_Symbol)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
500 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
501 struct Lisp_String *name = XSYMBOL (c)->name;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
502 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
504 bcopy (name->data, ptr, name->size);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
505 ptr += name->size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
506 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
508 if (echoptr == echobuf && EQ (c, help_char))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
509 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
510 strcpy (ptr, " (Type ? for further options)");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
511 ptr += strlen (ptr);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
512 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514 *ptr = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515 echoptr = ptr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
519 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
521 /* Temporarily add a dash to the end of the echo string if it's not
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522 empty, so that it serves as a mini-prompt for the very next character. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
523
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
524 echo_dash ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
526 if (!immediate_echo && echoptr == echobuf)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
527 return;
2505
c0a13d078f68 * keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents: 2482
diff changeset
528 /* Do nothing if not echoing at all. */
c0a13d078f68 * keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents: 2482
diff changeset
529 if (echoptr == 0)
c0a13d078f68 * keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents: 2482
diff changeset
530 return;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
531
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
532 /* Put a dash at the end of the buffer temporarily,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
533 but make it go away when the next character is added. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
534 echoptr[0] = '-';
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
535 echoptr[1] = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
536
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
539
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540 /* Display the current echo string, and begin echoing if not already
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 doing so. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 echo ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 if (!immediate_echo)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
548 immediate_echo = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
549
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 for (i = 0; i < this_command_key_count; i++)
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
551 echo_char (XVECTOR (this_command_keys)->contents[i]);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
552 echo_dash ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555 echoing = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
556 message1 (echobuf);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
557 echoing = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
558
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
559 if (waiting_for_input && !NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
563 /* Turn off echoing, for the start of a new command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
564
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
565 cancel_echoing ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
566 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
567 immediate_echo = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
568 echoptr = echobuf;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
569 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
570
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
571 /* Return the length of the current echo string. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
573 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
574 echo_length ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
576 return echoptr - echobuf;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
577 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
578
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579 /* Truncate the current echo message to its first LEN chars.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
580 This and echo_char get used by read_key_sequence when the user
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
581 switches frames while entering a key sequence. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
582
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
583 static void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584 echo_truncate (len)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
585 int len;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
587 echobuf[len] = '\0';
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
588 echoptr = echobuf + len;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
589 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
590
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
591
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
592 /* Functions for manipulating this_command_keys. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
593 static void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
594 add_command_key (key)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595 Lisp_Object key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
596 {
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
597 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
598
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
599 if (this_command_key_count >= size)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
600 {
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
601 Lisp_Object new_keys = Fmake_vector (make_number (size * 2), Qnil);
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
602
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
603 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
604 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
605 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
606
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
607 this_command_keys = new_keys;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
608 }
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
609
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
610 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
611 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
612
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
613 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
614 recursive_edit_1 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
615 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
616 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
617 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
618
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
619 if (command_loop_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
620 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
621 specbind (Qstandard_output, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
622 specbind (Qstandard_input, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
623 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
624
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
625 val = command_loop ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
626 if (EQ (val, Qt))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
627 Fsignal (Qquit, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
628
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
629 return unbind_to (count, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
630 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
631
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
632 /* When an auto-save happens, record the "time", and don't do again soon. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
633 record_auto_save ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
634 {
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
635 last_auto_save = num_nonmacro_input_chars;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
636 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
637
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
638 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
639 "Invoke the editor command loop recursively.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
640 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
641 that tells this function to return.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
642 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
643 This function is called by the editor initialization to begin editing.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
644 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
645 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
646 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
647 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
648
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
649 command_loop_level++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
650 update_mode_lines = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
651
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 record_unwind_protect (recursive_edit_unwind,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
653 (command_loop_level
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
654 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
655 ? Fcurrent_buffer ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
656 : Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
657 recursive_edit_1 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
658 return unbind_to (count, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
659 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
660
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662 recursive_edit_unwind (buffer)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 Lisp_Object buffer;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 if (!NILP (buffer))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666 Fset_buffer (buffer);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
667
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
668 command_loop_level--;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
669 update_mode_lines = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
670 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
671 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
672
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
673 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
674 cmd_error (data)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
675 Lisp_Object data;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
676 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
677 Lisp_Object errmsg, tail, errname, file_error;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
678 Lisp_Object stream;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
679 struct gcpro gcpro1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
680 int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
681
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
682 Vquit_flag = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
683 Vinhibit_quit = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
684 Vstandard_output = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
685 Vstandard_input = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
686 Vexecuting_macro = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
687 echo_area_glyphs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
688
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
689 /* If the window system or terminal frame hasn't been initialized
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
690 yet, or we're not interactive, it's best to dump this message out
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
691 to stderr and exit. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
692 if (! FRAME_MESSAGE_BUF (selected_frame)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
693 || noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
694 stream = Qexternal_debugging_output;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
695 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
696 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
697 Fdiscard_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
698 bitch_at_user ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
699 stream = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
700 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
701
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
702 errname = Fcar (data);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
703
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
704 if (EQ (errname, Qerror))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
705 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
706 data = Fcdr (data);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
707 if (!CONSP (data)) data = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
708 errmsg = Fcar (data);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
709 file_error = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
711 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
713 errmsg = Fget (errname, Qerror_message);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
714 file_error = Fmemq (Qfile_error,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
715 Fget (errname, Qerror_conditions));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
716 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
717
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
718 /* Print an error message including the data items.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
719 This is done by printing it into a scratch buffer
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
720 and then making a copy of the text in the buffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
721
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
722 if (!CONSP (data)) data = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
723 tail = Fcdr (data);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
724 GCPRO1 (tail);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
725
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
726 /* For file-error, make error message by concatenating
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
727 all the data items. They are all strings. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
728 if (!NILP (file_error) && !NILP (tail))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
729 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
730
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731 if (XTYPE (errmsg) == Lisp_String)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
732 Fprinc (errmsg, stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
733 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
734 write_string_1 ("peculiar error", -1, stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
735
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
736 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
737 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
738 write_string_1 (i ? ", " : ": ", 2, stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
739 if (!NILP (file_error))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
740 Fprinc (Fcar (tail), stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
742 Fprin1 (Fcar (tail), stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
743 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744 UNGCPRO;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
746 /* If the window system or terminal frame hasn't been initialized
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
747 yet, or we're in -batch mode, this error should cause Emacs to exit. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
748 if (! FRAME_MESSAGE_BUF (selected_frame)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
749 || noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
751 Fterpri (stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
752 Fkill_emacs (make_number (-1));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
753 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
754
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
755 Vquit_flag = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
756
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
757 Vinhibit_quit = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
758 return make_number (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
759 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 Lisp_Object command_loop_1 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 Lisp_Object command_loop_2 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 Lisp_Object top_level_1 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 /* Entry to editor-command-loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766 This level has the catches for exiting/returning to editor command loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
767 It returns nil to exit recursive edit, t to abort it. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770 command_loop ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
772 if (command_loop_level > 0 || minibuf_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
773 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
774 return internal_catch (Qexit, command_loop_2, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
775 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
776 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
777 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779 internal_catch (Qtop_level, top_level_1, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
780 internal_catch (Qtop_level, command_loop_2, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 /* End of file in -batch run causes exit here. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
783 if (noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784 Fkill_emacs (Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
785 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
786 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
787
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
788 /* Here we catch errors in execution of commands within the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
789 editing loop, and reenter the editing loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
790 When there is an error, cmd_error runs and returns a non-nil
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
791 value to us. A value of nil means that cmd_loop_1 itself
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
792 returned due to end of file (or end of kbd macro). */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
793
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
794 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
795 command_loop_2 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
796 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
797 register Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
798
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
799 do
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
800 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
801 while (!NILP (val));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
802
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
803 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
804 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
805
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
806 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
807 top_level_2 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
808 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
809 return Feval (Vtop_level);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
810 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
811
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
812 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
813 top_level_1 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
814 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
815 /* On entry to the outer level, run the startup file */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
816 if (!NILP (Vtop_level))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
817 internal_condition_case (top_level_2, Qerror, cmd_error);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
818 else if (!NILP (Vpurify_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
819 message ("Bare impure Emacs (standard Lisp code not loaded)");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
820 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
821 message ("Bare Emacs (standard Lisp code not loaded)");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
822 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
823 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
824
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
825 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
826 "Exit all recursive editing levels.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
827 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
828 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
829 Fthrow (Qtop_level, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
830 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
831
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
832 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
833 "Exit from the innermost recursive edit or minibuffer.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
834 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
835 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
836 if (command_loop_level > 0 || minibuf_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
837 Fthrow (Qexit, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
838
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
839 error ("No recursive edit is in progress");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
840 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
841
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
842 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
843 "Abort the command that requested this recursive edit or minibuffer input.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
844 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
845 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
846 if (command_loop_level > 0 || minibuf_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
847 Fthrow (Qexit, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
848
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
849 error ("No recursive edit is in progress");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
850 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
851
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
852 /* This is the actual command reading loop,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
853 sans error-handling encapsulation. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
854
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 Lisp_Object Fcommand_execute ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
856 static int read_key_sequence ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
857
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
858 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
859 command_loop_1 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
860 {
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
861 Lisp_Object cmd, tem;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
862 int lose;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
863 int nonundocount;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
864 Lisp_Object keybuf[30];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
865 int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
866 int no_redisplay;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
867 int no_direct;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
868 int prev_modiff;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
869 struct buffer *prev_buffer;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
870
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
871 Vprefix_arg = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
872 Vdeactivate_mark = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
873 waiting_for_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
874 cancel_echoing ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
875
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
876 /* Don't clear out last_command at the beginning of a macro. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
877 if (XTYPE (Vexecuting_macro) != Lisp_String)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
878 last_command = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
879
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
880 nonundocount = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
881 no_redisplay = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
882 this_command_key_count = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
883
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
884 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
885 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
886 /* Install chars successfully executed in kbd macro. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
887
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
888 if (defining_kbd_macro && NILP (Vprefix_arg))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
889 finalize_kbd_macro_chars ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
890
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
891 /* Make sure the current window's buffer is selected. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
892 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
893 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
894
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
895 /* Display any malloc warning that just came out. Use while because
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
896 displaying one warning can cause another. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
897
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
898 while (pending_malloc_warning)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
899 display_malloc_warning ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
900
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
901 no_direct = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
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;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
904
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
905 /* 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
906 wait 2 sec and redraw minibuffer. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
907
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
908 if (minibuf_level && echo_area_glyphs)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909 {
1097
d9efc1c88574 (command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents: 1083
diff changeset
910 /* 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
911 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
912 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
913 specbind (Qinhibit_quit, Qt);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
914 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
915 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
916
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
917 echo_area_glyphs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
918 no_direct = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
919 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
920 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
921 Vquit_flag = Qnil;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
922 unread_command_events = Fcons (make_number (quit_char), Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
923 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
924 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
925
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
926 #ifdef C_ALLOCA
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
927 alloca (0); /* Cause a garbage collection now */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
928 /* Since we can free the most stuff here. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
929 #endif /* C_ALLOCA */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
930
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
931 #if 0
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
932 #ifdef MULTI_FRAME
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
933 /* 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
934 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
935 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
936 Is this a good idea? */
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
937 if (XTYPE (internal_last_event_frame) == Lisp_Frame
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
938 && 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
939 Fselect_frame (internal_last_event_frame, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
940 #endif
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
941 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
942 /* 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
943 really recompute the menubar from the value. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
944 if (! NILP (Vlucid_menu_bar_dirty_flag))
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
945 call0 (Qrecompute_lucid_menubar);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
946
2789
6ec57c1558da (command_loop_1): Don't do it here.
Richard M. Stallman <rms@gnu.org>
parents: 2756
diff changeset
947 #if 0 /* This is done in xdisp.c now. */
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
948 #ifdef MULTI_FRAME
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
949 for (tem = Vframe_list; CONSP (tem); tem = XCONS (tem)->cdr)
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
950 {
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
951 struct frame *f = XFRAME (XCONS (tem)->car);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
952 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f));
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
953
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
954 /* If the user has switched buffers or windows, we need to
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
955 recompute to reflect the new bindings. But we'll
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
956 recompute when update_mode_lines is set too; that means
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
957 that people can use force-mode-line-update to request
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
958 that the menu bar be recomputed. The adverse effect on
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
959 the rest of the redisplay algorithm is about the same as
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
960 windows_or_buffers_changed anyway. */
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
961 if (windows_or_buffers_changed
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
962 || update_mode_lines
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
963 || (XFASTINT (w->last_modified) < MODIFF
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
964 && (XFASTINT (w->last_modified)
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
965 <= XBUFFER (w->buffer)->save_modified)))
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
966 {
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
967 struct buffer *prev = current_buffer;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
968 current_buffer = XBUFFER (w->buffer);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
969 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items ();
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
970 current_buffer = prev;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
971 }
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
972 }
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
973 #endif /* MULTI_FRAME */
2789
6ec57c1558da (command_loop_1): Don't do it here.
Richard M. Stallman <rms@gnu.org>
parents: 2756
diff changeset
974 #endif /* 0 */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
975
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
976 /* Read next key sequence; i gets its length. */
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
977 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), 0);
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
978
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
979 ++num_input_keys;
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
980
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 /* Now we have read a key sequence of length I,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982 or else I is 0 and we found end of file. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
983
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
984 if (i == 0) /* End of file -- happens only in */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
985 return Qnil; /* a kbd macro, at the end. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
986
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
987 last_command_char = keybuf[i - 1];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
988
2406
465732c007f4 (command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents: 2340
diff changeset
989 /* 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
990 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
991 from that position. */
465732c007f4 (command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents: 2340
diff changeset
992 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
993
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
994 cmd = read_key_sequence_cmd;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
995 if (!NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
996 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
998 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
999 Vexecuting_macro = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1000 QUIT; /* Make some noise. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1001 /* Will return since macro now empty. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1002 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1003 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1005 /* Do redisplay processing after this command except in special
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1006 cases identified below that set no_redisplay to 1. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1007 no_redisplay = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1008
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1009 prev_buffer = current_buffer;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1010 prev_modiff = MODIFF;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1011
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1012 /* Execute the command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1013
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1014 this_command = cmd;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1015 if (!NILP (Vpre_command_hook))
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1016 call1 (Vrun_hooks, Qpre_command_hook);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1017
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1018 if (NILP (this_command))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1019 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1020 /* nil means key is undefined. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1021 bitch_at_user ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1022 defining_kbd_macro = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1023 update_mode_lines = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1024 Vprefix_arg = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1025
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1027 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1028 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1029 if (NILP (Vprefix_arg) && ! no_direct)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1030 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1031 /* Recognize some common commands in common situations and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1032 do them directly. */
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1033 if (EQ (this_command, Qforward_char) && point < ZV)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1034 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1035 struct Lisp_Vector *dp
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1036 = window_display_table (XWINDOW (selected_window));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1037 lose = FETCH_CHAR (point);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1038 SET_PT (point + 1);
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1039 if ((dp
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1040 ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector
2133
63d15b0e048e (command_loop_1): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents: 2097
diff changeset
1041 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1)
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1042 : (lose >= 0x20 && lose < 0x7f))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1043 && (XFASTINT (XWINDOW (selected_window)->last_modified)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1044 >= MODIFF)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1045 && (XFASTINT (XWINDOW (selected_window)->last_point)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1046 == point - 1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1047 && !windows_or_buffers_changed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1048 && EQ (current_buffer->selective_display, Qnil)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1049 && !detect_input_pending ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1050 && NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1051 no_redisplay = direct_output_forward_char (1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1052 goto directly_done;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1053 }
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1054 else if (EQ (this_command, Qbackward_char) && point > BEGV)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1055 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1056 struct Lisp_Vector *dp
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1057 = window_display_table (XWINDOW (selected_window));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1058 SET_PT (point - 1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1059 lose = FETCH_CHAR (point);
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1060 if ((dp
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1061 ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector
2133
63d15b0e048e (command_loop_1): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents: 2097
diff changeset
1062 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1)
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1063 : (lose >= 0x20 && lose < 0x7f))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1064 && (XFASTINT (XWINDOW (selected_window)->last_modified)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1065 >= MODIFF)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1066 && (XFASTINT (XWINDOW (selected_window)->last_point)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1067 == point + 1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1068 && !windows_or_buffers_changed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1069 && EQ (current_buffer->selective_display, Qnil)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1070 && !detect_input_pending ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1071 && NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1072 no_redisplay = direct_output_forward_char (-1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1073 goto directly_done;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1074 }
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1075 else if (EQ (this_command, Qself_insert_command)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1076 /* Try this optimization only on ascii keystrokes. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1077 && XTYPE (last_command_char) == Lisp_Int)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1078 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1079 unsigned char c = XINT (last_command_char);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1080
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1081 if (NILP (Vexecuting_macro) &&
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1082 !EQ (minibuf_window, selected_window))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1084 if (!nonundocount || nonundocount >= 20)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1085 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1086 Fundo_boundary ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1087 nonundocount = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1088 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1089 nonundocount++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1090 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1091 lose = (XFASTINT (XWINDOW (selected_window)->last_modified)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1092 < MODIFF)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1093 || (XFASTINT (XWINDOW (selected_window)->last_point)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1094 != point)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1095 || MODIFF <= current_buffer->save_modified
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1096 || windows_or_buffers_changed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1097 || !EQ (current_buffer->selective_display, Qnil)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1098 || detect_input_pending ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1099 || !NILP (Vexecuting_macro);
3677
597bde558c91 (read_char): Set c properly as a Lisp int.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1100 if (internal_self_insert (c, 0))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1101 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1102 lose = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103 nonundocount = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1104 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1105 if (!lose &&
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1106 (point == ZV || FETCH_CHAR (point) == '\n'))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1107 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1108 struct Lisp_Vector *dp
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1109 = 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
1110 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
1111
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1112 if (dp)
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1113 {
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1114 Lisp_Object obj = DISP_CHAR_VECTOR (dp, lose);
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1115
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1116 if (XTYPE (obj) == Lisp_Vector
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1117 && XVECTOR (obj)->size == 1
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1118 && (XTYPE (obj = XVECTOR (obj)->contents[0])
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1119 == Lisp_Int))
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1120 no_redisplay =
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1121 direct_output_for_insert (XINT (obj));
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1122 }
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1123 else
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1124 {
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1125 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
1126 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
1127 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1128 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1129 goto directly_done;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1130 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1131 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1132
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1133 /* Here for a command that isn't executed directly */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1134
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1135 nonundocount = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1136 if (NILP (Vprefix_arg))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1137 Fundo_boundary ();
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1138 Fcommand_execute (this_command, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1139
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1140 }
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
1141 directly_done: ;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1142
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1143 if (!NILP (Vpost_command_hook))
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1144 call1 (Vrun_hooks, Qpost_command_hook);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1145
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1146 /* If there is a prefix argument,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1147 1) We don't want last_command to be ``universal-argument''
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1148 (that would be dumb), so don't set last_command,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1149 2) we want to leave echoing on so that the prefix will be
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1150 echoed as part of this key sequence, so don't call
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1151 cancel_echoing, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1152 3) we want to leave this_command_key_count non-zero, so that
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1153 read_char will realize that it is re-reading a character, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1154 not echo it a second time. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1155 if (NILP (Vprefix_arg))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1156 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1157 last_command = this_command;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1158 cancel_echoing ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1159 this_command_key_count = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1160 }
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1161
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1162 if (!NILP (current_buffer->mark_active))
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1163 {
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1164 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
1165 {
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1166 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
1167 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
1168 }
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1169 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
1170 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
1171 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1172 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1173 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1174
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1175 /* Number of seconds between polling for input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1176 int polling_period;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1177
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
1178 /* Nonzero means polling for input is temporarily suppressed. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1179 int poll_suppress_count;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1180
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1181 #ifdef POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1182 int polling_for_input;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1183
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1184 /* Handle an alarm once each second and read pending input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1185 so as to handle a C-g if it comces in. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1186
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1187 SIGTYPE
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1188 input_poll_signal ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1189 {
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
1190 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
1191 && !waiting_for_input)
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
1192 read_avail_input (0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1193 signal (SIGALRM, input_poll_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1194 alarm (polling_period);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1195 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1196
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1197 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1198
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1199 /* Begin signals to poll for input, if they are appropriate.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1200 This function is called unconditionally from various places. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1201
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1202 start_polling ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1203 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1204 #ifdef POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1205 if (read_socket_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1206 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1207 poll_suppress_count--;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1208 if (poll_suppress_count == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1209 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1210 signal (SIGALRM, input_poll_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1211 polling_for_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1212 alarm (polling_period);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1213 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1214 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1215 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1216 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1217
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1218 /* Turn off polling. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1219
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1220 stop_polling ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1221 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1222 #ifdef POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1223 if (read_socket_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1224 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1225 if (poll_suppress_count == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1226 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1227 polling_for_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1228 alarm (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1229 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1230 poll_suppress_count++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1231 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1232 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1233 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1234
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1235 /* Applying the control modifier to CHARACTER. */
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1236 int
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1237 make_ctrl_char (c)
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1238 int c;
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1239 {
2954
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1240 /* Save the upper bits here. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1241 int upper = c & ~0177;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1242
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1243 c &= 0177;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1244
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1245 /* Everything in the columns containing the upper-case letters
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1246 denotes a control character. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1247 if (c >= 0100 && c < 0140)
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1248 {
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1249 int oc = c;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1250 c &= ~0140;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1251 /* Set the shift modifier for a control char
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1252 made from a shifted letter. But only for letters! */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1253 if (oc >= 'A' && oc <= 'Z')
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1254 c |= shift_modifier;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1255 }
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1256
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1257 /* The lower-case letters denote control characters too. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1258 else if (c >= 'a' && c <= 'z')
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1259 c &= ~0140;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1260
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1261 /* Include the bits for control and shift
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1262 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
1263 else if (c >= ' ')
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1264 c |= ctrl_modifier;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1265
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1266 /* Replace the high bits. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1267 c |= (upper & ~ctrl_modifier);
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1268
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1269 return c;
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1270 }
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1271
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1272
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1273
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1274 /* Input of single characters from keyboard */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1275
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1276 Lisp_Object print_help ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1277 static Lisp_Object kbd_buffer_get_event ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1278
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1279 /* read a character from the keyboard; call the redisplay if needed */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1280 /* commandflag 0 means do not do auto-saving, but do do redisplay.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1281 -1 means do not do redisplay, but do do autosaving.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1282 1 means do both. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1283
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1284 /* 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
1285 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
1286
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1287 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
1288 the first event of a key sequence.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1289
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
1290 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
1291 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
1292 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone. */
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1293
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1294 Lisp_Object
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1295 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1296 int commandflag;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1297 int nmaps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1298 Lisp_Object *maps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1299 Lisp_Object prev_event;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1300 int *used_mouse_menu;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1301 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1302 register Lisp_Object c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1303 int count;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1304 jmp_buf save_jump;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1305
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
1306 if (CONSP (unread_command_events))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1307 {
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
1308 c = XCONS (unread_command_events)->car;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
1309 unread_command_events = XCONS (unread_command_events)->cdr;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1310
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1311 if (this_command_key_count == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1312 goto reread_first;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1313 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1314 goto reread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1315 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1316
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1317 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
1318 {
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1319 XSET (c, Lisp_Int, unread_command_char);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1320 unread_command_char = -1;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1321
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1322 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
1323 goto reread_first;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1324 else
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1325 goto reread;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1326 }
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1327
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1328 if (!NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1329 {
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1330 #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
1331 /* 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
1332 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
1333 remain unchanged.
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1334
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1335 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
1336 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
1337 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
1338 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
1339 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
1340 selected. */
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1341 Vlast_event_frame = internal_last_event_frame = Qmacro;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1342 #endif
1239
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1343
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
1344 /* 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
1345 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
1346 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
1347 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
1348 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1349 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1350 XSET (c, Lisp_Int, -1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1351 return c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1352 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1353
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1354 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1355 if (XTYPE (Vexecuting_macro) == Lisp_String
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1356 && (XINT (c) & 0x80))
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1357 XFASTINT (c) = CHAR_META | (XINT (c) & ~0x80);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1358
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1359 executing_macro_index++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1360
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1361 goto from_macro;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1362 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1363
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1364 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
1365 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1366 c = unread_switch_frame;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1367 unread_switch_frame = Qnil;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1368
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1369 /* 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
1370 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
1371 goto reread_first;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1372 }
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1373
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1374 /* Save outer setjmp data, in case called recursively. */
650
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
1375 save_getcjmp (save_jump);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1376
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1377 stop_polling ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1378
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1379 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1380 redisplay ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1381
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1382 if (_setjmp (getcjmp))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1383 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1384 XSET (c, Lisp_Int, quit_char);
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1385 #ifdef MULTI_FRAME
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1386 XSET (internal_last_event_frame, Lisp_Frame, selected_frame);
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1387 Vlast_event_frame = internal_last_event_frame;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1388 #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
1389 /* 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
1390 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
1391 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
1392 Vquit_flag = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1393
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1394 goto non_reread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1395 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1396
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1397 /* Message turns off echoing unless more keystrokes turn it on again. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1398 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1399 cancel_echoing ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1400 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1401 /* If already echoing, continue. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1402 echo_dash ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1403
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1404 /* If in middle of key sequence and minibuffer not active,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1405 start echoing if enough time elapses. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1406 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1407 && echo_keystrokes > 0
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1408 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1409 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1410 Lisp_Object tem0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1411
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1412 /* After a mouse event, start echoing right away.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1413 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
1414 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
1415 if (EVENT_HAS_PARAMETERS (prev_event))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1416 echo ();
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1417 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1418 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1419 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1420 if (EQ (tem0, Qt))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1421 echo ();
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1422 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1423 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1424
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1425 /* Maybe auto save due to number of keystrokes or idle time. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1426
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1427 if (commandflag != 0
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1428 && auto_save_interval > 0
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
1429 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1430 && !detect_input_pending ())
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1431 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1432 jmp_buf temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1433 save_getcjmp (temp);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1434 Fdo_auto_save (Qnil, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1435 restore_getcjmp (temp);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1436 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1438 /* Try reading a character via menu prompting.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1439 Try this before the sit-for, because the sit-for
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1440 would do the wrong thing if we are supposed to do
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1441 menu prompting. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1442 c = Qnil;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1443 if (INTERACTIVE && !NILP (prev_event))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1444 c = read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1445
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1446 /* Slow down auto saves logarithmically in size of current buffer,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447 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
1448 if (INTERACTIVE && NILP (c))
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1449 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1450 int delay_level, buffer_size;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1451
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1452 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1453 last_non_minibuf_size = Z - BEG;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1454 buffer_size = (last_non_minibuf_size >> 8) + 1;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1455 delay_level = 0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1456 while (buffer_size > 64)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1457 delay_level++, buffer_size -= buffer_size >> 2;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1458 if (delay_level < 4) delay_level = 4;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1459 /* 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
1460 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
1461
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1462 /* 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
1463 if (commandflag != 0
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
1464 && num_nonmacro_input_chars > last_auto_save
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1465 && XTYPE (Vauto_save_timeout) == Lisp_Int
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1466 && XINT (Vauto_save_timeout) > 0)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1467 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1468 Lisp_Object tem0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1469 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
1470 tem0 = sit_for (delay, 0, 1, 1);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1471 if (EQ (tem0, Qt))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1472 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1473 jmp_buf temp;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1474 save_getcjmp (temp);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1475 Fdo_auto_save (Qnil, Qnil);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1476 restore_getcjmp (temp);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1477
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1478 /* 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
1479 available, garbage collect if there has been enough
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1480 consing going on to make it worthwhile. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1481 if (!detect_input_pending ()
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1482 && consing_since_gc > gc_cons_threshold / 2)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1483 Fgarbage_collect ();
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1484 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1485 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1486 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1488 /* Actually read a character, waiting if necessary. */
3174
719776bc7f7d (read_char): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents: 3117
diff changeset
1489 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
1490 {
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1491 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
1492 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
1493 break;
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1494 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1495 redisplay ();
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1496 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1497
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1498 /* Terminate Emacs in batch mode if at eof. */
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1499 if (noninteractive && XTYPE (c) == Lisp_Int && XINT (c) < 0)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1500 Fkill_emacs (make_number (1));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1501
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1502 if (XTYPE (c) == Lisp_Int)
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1503 {
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1504 /* Add in any extra modifiers, where appropriate. */
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1505 if ((extra_keyboard_modifiers & CHAR_CTL)
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1506 || ((extra_keyboard_modifiers & 0177) < ' '
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1507 && (extra_keyboard_modifiers & 0177) != 0))
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1508 XSETINT (c, make_ctrl_char (XINT (c)));
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1509
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1510 /* Transfer any other modifier bits directly from
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1511 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
1512 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
1513 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
1514 }
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
1515
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1516 non_reread:
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1517
650
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
1518 restore_getcjmp (save_jump);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 start_polling ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1522 echo_area_glyphs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1523
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1524 /* Handle things that only apply to characters. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1525 if (XTYPE (c) == Lisp_Int)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1526 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1527 /* 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
1528 if (XINT (c) == -1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1529 return c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1530
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1531 if (XTYPE (Vkeyboard_translate_table) == Lisp_String
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
1532 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
1533 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1534 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1535
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1536 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
1537 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
1538 if (++recent_keys_index >= NUM_RECENT_KEYS)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1539 recent_keys_index = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1540
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1541 /* Write c to the dribble file. If c is a lispy event, write
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1542 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1543 If you, dear reader, have a better idea, you've got the source. :-) */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1544 if (dribble)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1545 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1546 if (XTYPE (c) == Lisp_Int)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
1547 putc (XINT (c), dribble);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1548 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1549 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1550 Lisp_Object dribblee = c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1551
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1552 /* If it's a structured event, take the event header. */
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
1553 dribblee = EVENT_HEAD (dribblee);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1554
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1555 if (XTYPE (dribblee) == Lisp_Symbol)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1556 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1557 putc ('<', dribble);
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1558 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
1559 XSYMBOL (dribblee)->name->size,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1560 dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1561 putc ('>', dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1562 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1563 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1564
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1565 fflush (dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1566 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1567
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1568 store_kbd_macro_char (c);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1569
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
1570 num_nonmacro_input_chars++;
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
1571
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1572 from_macro:
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1573 reread_first:
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1574
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1575 /* Record this character as part of the current key.
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1576 Don't record mouse motion; it should never matter. */
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1577 if (! (EVENT_HAS_PARAMETERS (c)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1578 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1579 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1580 echo_char (c);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1581 add_command_key (c);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1582 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1583
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1584 /* Re-reading in the middle of a command */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1585 reread:
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1586 last_input_char = c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1587 num_input_chars++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1588
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1589 /* Process the help character specially if enabled */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1590 if (EQ (c, help_char) && !NILP (Vhelp_form))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1591 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1592 Lisp_Object tem0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1593 count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1594
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1595 record_unwind_protect (Fset_window_configuration,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1596 Fcurrent_window_configuration (Qnil));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1597
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1598 tem0 = Feval (Vhelp_form);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1599 if (XTYPE (tem0) == Lisp_String)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1600 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1601
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1602 cancel_echoing ();
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
1603 c = read_char (0, 0, 0, Qnil, 0);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1604 /* Remove the help from the frame */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1605 unbind_to (count, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1606 redisplay ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1607 if (EQ (c, make_number (040)))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1608 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1609 cancel_echoing ();
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1610 c = read_char (0, 0, 0, Qnil, 0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1611 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1612 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1613
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1614 return c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1615 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1616
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1617 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1618 print_help (object)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1619 Lisp_Object object;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1620 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1621 Fprinc (object, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1622 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1623 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1624
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1625 /* Copy out or in the info on where C-g should throw to.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1626 This is used when running Lisp code from within get_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1627 in case get_char is called recursively.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1628 See read_process_output. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1629
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1630 save_getcjmp (temp)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1631 jmp_buf temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1632 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1633 bcopy (getcjmp, temp, sizeof getcjmp);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1634 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1635
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1636 restore_getcjmp (temp)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1637 jmp_buf temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1638 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1639 bcopy (temp, getcjmp, sizeof getcjmp);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1640 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1641
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1642
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1643 /* Low level keyboard/mouse input.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1644 kbd_buffer_store_event places events in kbd_buffer, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1645 kbd_buffer_get_event retrieves them.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1646 mouse_moved indicates when the mouse has moved again, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1647 *mouse_position_hook provides the mouse position. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1648
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1649 /* Set this for debugging, to have a way to get out */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1650 int stop_character;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1651
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1652 extern int frame_garbaged;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1653
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1654 /* Return true iff there are any events in the queue that read-char
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1655 would return. If this returns false, a read-char would block. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1656 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1657 readable_events ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1658 {
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
1659 return ! EVENT_QUEUES_EMPTY;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1660 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1661
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1662
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1663 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1664 of this function. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1665 static Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1666 tracking_off (old_value)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1667 Lisp_Object old_value;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1668 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1669 if (! XFASTINT (old_value))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1670 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1671 do_mouse_tracking = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1672
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1673 /* Redisplay may have been preempted because there was input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1674 available, and it assumes it will be called again after the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1675 input has been processed. If the only input available was
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1676 the sort that we have just disabled, then we need to call
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1677 redisplay. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1678 if (!readable_events ())
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1679 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1680 redisplay_preserve_echo_area ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1681 get_input_pending (&input_pending);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1682 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1683 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1684 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1685
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1686 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
1687 "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
1688 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
1689 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
1690 Normally, mouse motion is ignored.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1691 (args)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1692 Lisp_Object args;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1693 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1694 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1695 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1696
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1697 XSET (val, Lisp_Int, do_mouse_tracking);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1698 record_unwind_protect (tracking_off, val);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1699
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1700 do_mouse_tracking = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1701
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1702 val = Fprogn (args);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1703 return unbind_to (count, val);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1704 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1705
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1706 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1707
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1708 void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1709 kbd_buffer_store_event (event)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1710 register struct input_event *event;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1711 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1712 if (event->kind == no_event)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1713 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1714
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1715 if (event->kind == ascii_keystroke)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1716 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1717 register int c = XFASTINT (event->code) & 0377;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1718
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1719 if (event->modifiers & ctrl_modifier)
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1720 c = make_ctrl_char (c);
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1721
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1722 if (c == quit_char)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1723 {
985
952aa214a3d0 * keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents: 966
diff changeset
1724 extern SIGTYPE interrupt_signal ();
952aa214a3d0 * keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents: 966
diff changeset
1725
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1726 #ifdef MULTI_FRAME
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1727 /* 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
1728 input, set Vlast_event_frame properly. If this doesn't
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1729 get returned to Emacs as an event, the next event read
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1730 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
1731 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1732 Lisp_Object focus =
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1733 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
1734
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1735 if (NILP (focus))
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1736 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
1737 else
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1738 internal_last_event_frame = focus;
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1739 Vlast_event_frame = internal_last_event_frame;
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1740 }
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1741 #endif
985
952aa214a3d0 * keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents: 966
diff changeset
1742
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
1743 last_event_timestamp = event->timestamp;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1744 interrupt_signal ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1745 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1746 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1747
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1748 if (c && c == stop_character)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1749 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1750 sys_suspend ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1751 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1752 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1753
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1754 XSET (event->code, Lisp_Int, c);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1755 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1756
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1757 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1758 kbd_store_ptr = kbd_buffer;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1759
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1760 /* Don't let the very last slot in the buffer become full,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1761 since that would make the two pointers equal,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1762 and that is indistinguishable from an empty buffer.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1763 Discard the event if it would fill the last slot. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1764 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1765 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1766 kbd_store_ptr->kind = event->kind;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1767 kbd_store_ptr->code = event->code;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1768 kbd_store_ptr->part = event->part;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1769 kbd_store_ptr->frame_or_window = event->frame_or_window;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1770 kbd_store_ptr->modifiers = event->modifiers;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1771 kbd_store_ptr->x = event->x;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1772 kbd_store_ptr->y = event->y;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1773 kbd_store_ptr->timestamp = event->timestamp;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1774 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1775 - kbd_buffer]
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1776 = event->frame_or_window);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1777
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1778 kbd_store_ptr++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1779 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1780 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1781
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1782 static Lisp_Object make_lispy_event ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1783 static Lisp_Object make_lispy_movement ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1784 static Lisp_Object modify_event_symbol ();
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1785 static Lisp_Object make_lispy_switch_frame ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1786
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1787 static Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1788 kbd_buffer_get_event ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1789 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1790 register int c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1791 Lisp_Object obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1792
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1793 if (noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1794 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1795 c = getchar ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1796 XSET (obj, Lisp_Int, c);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1797 return obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1798 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1799
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1800 retry:
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1801 /* Wait until there is input available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1802 for (;;)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1803 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1804 if (!EVENT_QUEUES_EMPTY)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1805 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1806
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1807 /* If the quit flag is set, then read_char will return
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1808 quit_char, so that counts as "available input." */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1809 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1810 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1811
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1812 /* One way or another, wait until input is available; then, if
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1813 interrupt handlers have not read it, read it now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1814
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1815 #ifdef OLDVMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1816 wait_for_kbd_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1817 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1818 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1819 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1820 gobble_input (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1821 #endif /* SIGIO */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1822 if (EVENT_QUEUES_EMPTY)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1823 {
650
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
1824 Lisp_Object minus_one;
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
1825
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
1826 XSET (minus_one, Lisp_Int, -1);
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
1827 wait_reading_process_input (0, 0, minus_one, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1828
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1829 if (!interrupt_input && EVENT_QUEUES_EMPTY)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1830 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1831 read_avail_input (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1832 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1833 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1834 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1835 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1836
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1837 /* At this point, we know that there is a readable event available
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1838 somewhere. If the event queue is empty, then there must be a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1839 mouse movement enabled and available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1840 if (kbd_fetch_ptr != kbd_store_ptr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1841 {
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1842 struct input_event *event;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1843
1404
1c2080f78a36 * keyboard.c (kbd_buffer_get_event): Fix fencepost bug in
Jim Blandy <jimb@redhat.com>
parents: 1402
diff changeset
1844 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1845 ? kbd_fetch_ptr
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1846 : kbd_buffer);
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1847
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1848 last_event_timestamp = event->timestamp;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1849
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1850 obj = Qnil;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1851
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1852 /* These two kinds of events get special handling
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1853 and don't actually appear to the command loop. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1854 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
1855 {
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1856 #ifdef HAVE_X11
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1857 x_handle_selection_request (event);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1858 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
1859 #else
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1860 /* 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
1861 a window system. */
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1862 abort ();
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1863 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1864 }
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1865
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1866 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
1867 {
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1868 #ifdef HAVE_X11
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1869 x_handle_selection_clear (event);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1870 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
1871 #else
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1872 /* 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
1873 a window system. */
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1874 abort ();
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
1875 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1876 }
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1877
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1878 /* If this event is on a different frame, return a switch-frame this
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1879 time, and leave the event in the queue for next time. */
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1880 else
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1881 {
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
1882 #ifdef 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
1883 Lisp_Object frame = event->frame_or_window;
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1884 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
1885
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1886 if (XTYPE (frame) == Lisp_Window)
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1887 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
1888
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1889 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
1890 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
1891 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
1892
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1893 if (! EQ (frame, internal_last_event_frame)
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1894 && 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
1895 obj = make_lispy_switch_frame (frame);
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1896 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
1897 #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
1898
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1899 /* 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
1900 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
1901
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1902 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
1903 {
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1904 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
1905
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1906 /* 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
1907 event->kind = no_event;
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1908 (XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer]
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1909 = Qnil);
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1910
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1911 kbd_fetch_ptr = event + 1;
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1912 }
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1913 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1914 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1915 else if (do_mouse_tracking && mouse_moved)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1916 {
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1917 FRAME_PTR f;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1918 Lisp_Object bar_window;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1919 enum scroll_bar_part part;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
1920 Lisp_Object x, y;
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
1921 unsigned long time;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1922
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1923 (*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
1924
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1925 obj = Qnil;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1926
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1927 #ifdef MULTI_FRAME
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1928 /* 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
1929 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
1930 frames. */
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1931 if (f)
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1932 {
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1933 Lisp_Object frame = FRAME_FOCUS_FRAME (f);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1934
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1935 if (NILP (frame))
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1936 XSET (frame, Lisp_Frame, f);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1937
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1938 if (! EQ (frame, internal_last_event_frame)
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1939 && XFRAME (frame) != selected_frame)
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1940 obj = make_lispy_switch_frame (internal_last_event_frame);
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1941 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
1942 }
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1943 #endif
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1944
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1945 /* 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
1946 return a mouse-motion event. */
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1947 if (NILP (obj))
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
1948 obj = make_lispy_movement (f, bar_window, part, x, y, time);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
1949 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1950 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1951 /* We were promised by the above while loop that there was
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1952 something for us to read! */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1953 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1954
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1955 #if 0
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1956 /* If something gave back nil as the Lispy event,
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1957 it means the event was discarded, so try again. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1958 if (NILP (obj))
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1959 goto retry;
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1960 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1961
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1962 input_pending = readable_events ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1963
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1964 #ifdef MULTI_FRAME
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1965 Vlast_event_frame = internal_last_event_frame;
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1966 #endif
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1967
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1968 return (obj);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1969 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1970
3104
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1971 /* Process any events that are not user-visible. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1972
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1973 void
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1974 swallow_events ()
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1975 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1976 while (kbd_fetch_ptr != kbd_store_ptr)
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1977 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1978 struct input_event *event;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1979
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1980 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1981 ? kbd_fetch_ptr
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1982 : kbd_buffer);
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1983
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1984 last_event_timestamp = event->timestamp;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1985
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1986 /* These two kinds of events get special handling
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1987 and don't actually appear to the command loop. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1988 if (event->kind == selection_request_event)
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1989 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1990 #ifdef HAVE_X11
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1991 x_handle_selection_request (event);
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1992 kbd_fetch_ptr = event + 1;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1993 #else
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1994 /* 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
1995 a window system. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1996 abort ();
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1997 #endif
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1998 }
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
1999
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2000 else if (event->kind == selection_clear_event)
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2001 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2002 #ifdef HAVE_X11
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2003 x_handle_selection_clear (event);
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2004 kbd_fetch_ptr = event + 1;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2005 #else
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2006 /* 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
2007 a window system. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2008 abort ();
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2009 #endif
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2010 }
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2011 else
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2012 break;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2013 }
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2014
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2015 get_input_pending (&input_pending);
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2016 }
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2017
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2018 /* Caches for modify_event_symbol. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2019 static Lisp_Object func_key_syms;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2020 static Lisp_Object mouse_syms;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2021
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2022 /* You'll notice that this table is arranged to be conveniently
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2023 indexed by X Windows keysym values. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2024 static char *lispy_function_keys[] =
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2025 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2026 /* X Keysym value */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2027
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
2028 "remove", 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
2029 "backspace",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2030 "tab",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2031 "linefeed",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2032 "clear",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2033 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2034 "return",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2035 0, 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2036 0, 0, 0, /* 0xff10 */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2037 "pause",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2038 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
2039 "escape",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2040 0, 0, 0, 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2041 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2042 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2043 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
2044
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2045 "home", /* 0xff50 */ /* IsCursorKey */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2046 "left",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2047 "up",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2048 "right",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2049 "down",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2050 "prior",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2051 "next",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2052 "end",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2053 "begin",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2054 0, /* 0xff59 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2055 0, 0, 0, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2056 "select", /* 0xff60 */ /* IsMiscFunctionKey */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2057 "print",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2058 "execute",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2059 "insert",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2060 0, /* 0xff64 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2061 "undo",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2062 "redo",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2063 "menu",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2064 "find",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2065 "cancel",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2066 "help",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2067 "break", /* 0xff6b */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2068
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2069 /* Here are some keys found mostly on HP keyboards. The X event
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2070 handling code will strip bit 29, which flags vendor-specific
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2071 keysyms. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2072 "reset", /* 0x1000ff6c */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2073 "system",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2074 "user",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2075 "clearline",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2076 "insertline",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2077 "deleteline",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2078 "insertchar",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2079 "deletechar",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2080 "backtab",
3054
57814bb76b37 (lispy_function_keys): Add kp-numlock. Fix kp-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 3042
diff changeset
2081 "kp-backtab", /* 0x1000ff75 */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2082 0, /* 0xff76 */
3054
57814bb76b37 (lispy_function_keys): Add kp-numlock. Fix kp-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 3042
diff changeset
2083 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2084 "kp-space", /* 0xff80 */ /* IsKeypadKey */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2085 0, 0, 0, 0, 0, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2086 "kp-tab", /* 0xff89 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2087 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2088 "kp-enter", /* 0xff8d */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2089 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2090 "kp-f1", /* 0xff91 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2091 "kp-f2",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2092 "kp-f3",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2093 "kp-f4",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2094 0, /* 0xff95 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2095 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2096 "kp-multiply", /* 0xffaa */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2097 "kp-add",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2098 "kp-separator",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2099 "kp-subtract",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2100 "kp-decimal",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2101 "kp-divide", /* 0xffaf */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2102 "kp-0", /* 0xffb0 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2103 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2104 0, /* 0xffba */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2105 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2106 "kp-equal", /* 0xffbd */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2107 "f1", /* 0xffbe */ /* IsFunctionKey */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2108 "f2",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2109 "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
2110 "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
2111 "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
2112 "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
2113 "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
2114 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
2115 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
2116 0, 0, 0, 0, 0, 0, 0, "delete"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2117 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2118
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2119 static char *lispy_mouse_names[] =
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2120 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2121 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2122 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2123
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2124 /* Scroll bar parts. */
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2125 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
2126
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2127 /* 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
2128 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
2129 &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
2130 };
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2131
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2132
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2133 /* 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
2134 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
2135
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2136 The elements have the form
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2137 (BUTTON-NUMBER MODIFIER-MASK . REST)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2138 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
2139
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2140 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
2141 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
2142 location to be included in drag events. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2143
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2144 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
2145
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2146 /* 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
2147 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
2148
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2149 static int button_up_button;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2150 static int button_up_x;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2151 static int button_up_y;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2152 static unsigned long button_up_time;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2153
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2154 /* The minimum time between clicks to make a double-click. */
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2155
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2156 int double_click_time;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2157
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2158 /* 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
2159
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2160 int double_click_count;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2161
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2162 /* Given a struct input_event, build the lisp event which represents
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2163 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
2164 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
2165
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2166 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
2167 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
2168 in order to build drag events when the button is released. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2169
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2170 static Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2171 make_lispy_event (event)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2172 struct input_event *event;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2173 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2174 #ifdef SWITCH_ENUM_BUG
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2175 switch ((int) event->kind)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2176 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2177 switch (event->kind)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2178 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2179 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2180 /* A simple keystroke. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2181 case ascii_keystroke:
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2182 {
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2183 int c = XFASTINT (event->code);
2867
5b72eb2483e7 * xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents: 2789
diff changeset
2184 /* 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
2185 when proper. */
5b72eb2483e7 * xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents: 2789
diff changeset
2186 if (event->modifiers & ctrl_modifier)
2954
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
2187 c = make_ctrl_char (c);
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
2188
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
2189 /* 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
2190 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
2191 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
2192 c |= (event->modifiers
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2193 & (meta_modifier | alt_modifier
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2194 | hyper_modifier | super_modifier));
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2195 button_up_time = 0;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2196 return c;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2197 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2198
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2199 /* A function key. The symbol may need to have modifier prefixes
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2200 tacked onto it. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2201 case non_ascii_keystroke:
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2202 button_up_time = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2203 return modify_event_symbol (XFASTINT (event->code), event->modifiers,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2204 Qfunction_key,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2205 lispy_function_keys, &func_key_syms,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2206 (sizeof (lispy_function_keys)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2207 / sizeof (lispy_function_keys[0])));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2208 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2209
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2210 /* 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
2211 a press, click or drag, and build the appropriate structure. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2212 case mouse_click:
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2213 case scroll_bar_click:
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2214 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2215 int button = XFASTINT (event->code);
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2216 Lisp_Object position;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2217 Lisp_Object *start_pos_ptr;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2218 Lisp_Object start_pos;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2219
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2220 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
2221 abort ();
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2222
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2223 /* 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
2224 if (event->kind == mouse_click)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2225 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2226 int part;
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2227 FRAME_PTR f = XFRAME (event->frame_or_window);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2228 Lisp_Object window
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2229 = window_from_coordinates (f, XINT (event->x), XINT (event->y),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2230 &part);
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2231 Lisp_Object posn;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2232
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2233 if (XINT (event->y) < FRAME_MENU_BAR_LINES (f))
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2234 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2235 int hpos;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2236 Lisp_Object items;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2237 items = FRAME_MENU_BAR_ITEMS (f);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2238 for (; CONSP (items); items = XCONS (items)->cdr)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2239 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2240 Lisp_Object pos, string;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2241 pos = Fcdr (Fcdr (Fcar (items)));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2242 string = Fcar (Fcdr (Fcar (items)));
3117
1d3a6f78266f (make_lispy_event): Fix off-by-1 error with hpos in menu bar.
Richard M. Stallman <rms@gnu.org>
parents: 3116
diff changeset
2243 if (XINT (event->x) >= XINT (pos)
1d3a6f78266f (make_lispy_event): Fix off-by-1 error with hpos in menu bar.
Richard M. Stallman <rms@gnu.org>
parents: 3116
diff changeset
2244 && XINT (event->x) < XINT (pos) + XSTRING (string)->size)
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2245 break;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2246 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2247 position
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2248 = Fcons (event->frame_or_window,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2249 Fcons (Qmenu_bar,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2250 Fcons (Fcons (event->x, event->y),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2251 Fcons (make_number (event->timestamp),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2252 Qnil))));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2253
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2254 if (CONSP (items))
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2255 return Fcons (Fcar (Fcar (items)),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2256 Fcons (position, Qnil));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2257 else
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2258 return Fcons (Qnil, Fcons (position, Qnil));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2259 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2260 else if (XTYPE (window) != Lisp_Window)
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2261 posn = Qnil;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2262 else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2263 {
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2264 XSETINT (event->x,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2265 (XINT (event->x) - XINT (XWINDOW (window)->left)));
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2266 XSETINT (event->y,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2267 (XINT (event->y) - XINT (XWINDOW (window)->top)));
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2268
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2269 if (part == 1)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2270 posn = Qmode_line;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2271 else if (part == 2)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2272 posn = Qvertical_line;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2273 else
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2274 XSET (posn, Lisp_Int,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2275 buffer_posn_from_coords (XWINDOW (window),
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2276 XINT (event->x),
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2277 XINT (event->y)));
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2278 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2279
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2280 position
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2281 = Fcons (window,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2282 Fcons (posn,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2283 Fcons (Fcons (event->x, event->y),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2284 Fcons (make_number (event->timestamp),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2285 Qnil))));
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2286 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2287 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2288 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2289 Lisp_Object window = event->frame_or_window;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2290 Lisp_Object portion_whole = Fcons (event->x, event->y);
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2291 Lisp_Object part = *scroll_bar_parts[(int) event->part];
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2292
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2293 position =
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2294 Fcons (window,
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2295 Fcons (Qvertical_scroll_bar,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2296 Fcons (portion_whole,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2297 Fcons (make_number (event->timestamp),
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2298 Fcons (part,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2299 Qnil)))));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2300 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2301
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2302 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
2303
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2304 start_pos = *start_pos_ptr;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2305 *start_pos_ptr = Qnil;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2306
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2307 /* 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
2308 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
2309 if (event->modifiers & down_modifier)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2310 *start_pos_ptr = Fcopy_alist (position);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2311
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2312 /* 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
2313 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
2314 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
2315 {
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2316 /* 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
2317 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
2318 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
2319 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
2320 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
2321 as a separate event. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2322
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2323 if (XTYPE (start_pos) != Lisp_Cons)
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2324 return Qnil;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2325
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2326 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
2327 #if 0 /* Formerly we treated an up with no down as a click event. */
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2328 if (XTYPE (start_pos) != Lisp_Cons)
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2329 event->modifiers |= click_modifier;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2330 else
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2331 #endif
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2332 {
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2333 /* 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
2334 pair. */
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2335 Lisp_Object down = Fnth (make_number (2), start_pos);
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2336
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2337 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
2338 && 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
2339 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2340 if (button == button_up_button
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2341 && XINT (event->x) == button_up_x
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2342 && XINT (event->y) == button_up_y
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2343 && button_up_time != 0
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2344 && ((int)(event->timestamp - button_up_time)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2345 < double_click_time))
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2346 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2347 double_click_count++;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2348 event->modifiers |= ((double_click_count > 2)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2349 ? triple_modifier
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2350 : double_modifier);
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2351 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2352 else
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2353 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2354 double_click_count = 1;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2355 event->modifiers |= click_modifier;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2356 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2357 button_up_button = button;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2358 button_up_x = XINT (event->x);
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2359 button_up_y = XINT (event->y);
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2360 button_up_time = event->timestamp;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2361 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2362 else
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2363 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2364 button_up_time = 0;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2365 event->modifiers |= drag_modifier;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2366 }
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2367 }
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2368 }
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2369 else
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2370 /* 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
2371 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
2372 abort ();
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2373
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2374 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2375 /* Get the symbol we should use for the mouse click. */
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2376 Lisp_Object head
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2377 = modify_event_symbol (button,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2378 event->modifiers,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2379 Qmouse_click,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2380 lispy_mouse_names, &mouse_syms,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2381 (sizeof (lispy_mouse_names)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
2382 / sizeof (lispy_mouse_names[0])));
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2383
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2384 if (event->modifiers & drag_modifier)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2385 return Fcons (head,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2386 Fcons (start_pos,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2387 Fcons (position,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
2388 Qnil)));
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2389 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
2390 return Fcons (head,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2391 Fcons (position,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2392 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
2393 Qnil)));
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2394 else
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2395 return Fcons (head,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2396 Fcons (position,
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2397 Qnil));
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2398 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2399 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2400
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2401 /* The 'kind' field of the event is something we don't recognize. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2402 default:
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2403 abort ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2404 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2405 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2406
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2407 static Lisp_Object
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2408 make_lispy_movement (frame, bar_window, part, x, y, time)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
2409 FRAME_PTR frame;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2410 Lisp_Object bar_window;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2411 enum scroll_bar_part part;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2412 Lisp_Object x, y;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
2413 unsigned long time;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2414 {
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2415 /* Is it a scroll bar movement? */
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2416 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
2417 {
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2418 Lisp_Object part_sym = *scroll_bar_parts[(int) part];
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2419
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2420 return Fcons (Qscroll_bar_movement,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2421 (Fcons (Fcons (bar_window,
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2422 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
2423 Fcons (Fcons (x, y),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2424 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
2425 Fcons (part_sym,
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2426 Qnil))))),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2427 Qnil)));
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2428 }
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2429
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2430 /* Or is it an ordinary mouse movement? */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2431 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2432 {
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2433 int area;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2434 Lisp_Object window =
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2435 (frame
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2436 ? window_from_coordinates (frame, XINT (x), XINT (y), &area)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2437 : Qnil);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2438 Lisp_Object posn;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2439
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2440 if (XTYPE (window) == Lisp_Window)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2441 {
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2442 XSETINT (x, XINT (x) - XINT (XWINDOW (window)->left));
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2443 XSETINT (y, XINT (y) - XINT (XWINDOW (window)->top));
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2444
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2445 if (area == 1)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2446 posn = Qmode_line;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2447 else if (area == 2)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2448 posn = Qvertical_line;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2449 else
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2450 XSET (posn, Lisp_Int,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2451 buffer_posn_from_coords (XWINDOW (window),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2452 XINT (x), XINT (y)));
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2453 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2454 else
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2455 {
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2456 window = Qnil;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2457 posn = Qnil;
2980
654eebe93c27 * keyboard.c (make_lispy_movement): Deal properly with mouse
Jim Blandy <jimb@redhat.com>
parents: 2956
diff changeset
2458 XFASTINT (x) = 0;
654eebe93c27 * keyboard.c (make_lispy_movement): Deal properly with mouse
Jim Blandy <jimb@redhat.com>
parents: 2956
diff changeset
2459 XFASTINT (y) = 0;
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2460 }
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2461
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2462 return Fcons (Qmouse_movement,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2463 Fcons (Fcons (window,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2464 Fcons (posn,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2465 Fcons (Fcons (x, y),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2466 Fcons (make_number (time),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2467 Qnil)))),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2468 Qnil));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2469 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2470 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2471
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2472 /* 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
2473 static Lisp_Object
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2474 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
2475 Lisp_Object frame;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2476 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2477 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
2478 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2479
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2480 /* Manipulating modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2481
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2482 /* 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
2483
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2484 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
2485 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
2486 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
2487
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2488 This doesn't use any caches. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2489 static int
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2490 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
2491 Lisp_Object symbol;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2492 int *modifier_end;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2493 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2494 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
2495 int i;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2496 int modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2497
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2498 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
2499
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2500 modifiers = 0;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2501 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
2502
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2503
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2504 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
2505 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
2506 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2507 #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
2508 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
2509 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
2510 modifiers |= bit; \
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2511 i += 2;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2512
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2513 case 'A':
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2514 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
2515 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2516
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2517 case 'C':
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2518 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
2519 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2520
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2521 case 'H':
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2522 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
2523 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2524
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2525 case 'M':
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2526 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
2527 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2528
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2529 case 'S':
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2530 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
2531 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2532
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2533 case 's':
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2534 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
2535 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2536
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2537 case 'd':
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2538 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
2539 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
2540 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
2541 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2542 modifiers |= drag_modifier;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2543 i += 5;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2544 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2545 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
2546 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2547 modifiers |= down_modifier;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2548 i += 5;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2549 }
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2550 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
2551 && ! 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
2552 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2553 modifiers |= double_modifier;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2554 i += 7;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2555 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2556 else
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2557 goto no_more_modifiers;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2558 break;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2559
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2560 case 't':
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2561 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
2562 goto no_more_modifiers;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2563 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
2564 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2565 modifiers |= triple_modifier;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2566 i += 7;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2567 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2568 else
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2569 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
2570 break;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2571
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2572 default:
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2573 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
2574
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2575 #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
2576 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2577 no_more_modifiers:
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2578
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2579 /* 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
2580 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
2581 | 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
2582 && 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
2583 && 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
2584 && ('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
2585 modifiers |= click_modifier;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2586
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2587 if (modifier_end)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2588 *modifier_end = i;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2589
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2590 return modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2591 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2592
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2593
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2594 /* 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
2595 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
2596 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
2597 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2598 apply_modifiers_uncached (modifiers, base, base_len)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2599 int modifiers;
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2600 char *base;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2601 int base_len;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2602 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2603 /* 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
2604 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
2605 reference to it. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2606 char *new_mods =
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2607 (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
2608 int mod_len;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2609
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2610 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2611 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
2612
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2613 /* 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
2614 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
2615 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
2616 abort ();
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2617
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2618 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
2619 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
2620 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
2621 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
2622 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
2623 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2624 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
2625 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2626 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2627 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
2628 /* 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
2629
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2630 *p = '\0';
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2631
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2632 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
2633 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2634
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2635 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2636 Lisp_Object new_name = make_uninit_string (mod_len + base_len);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2637
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2638 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
2639 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
2640
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2641 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
2642 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2643 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2644
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2645
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2646 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
2647 {
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
2648 "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
2649 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
2650 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
2651 };
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2652 #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
2653
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2654 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
2655
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2656 /* 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
2657 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2658 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
2659 int modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2660 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2661 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
2662 int i;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2663
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2664 modifier_list = Qnil;
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2665 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
2666 if (modifiers & (1<<i))
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2667 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2668 modifier_list);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2669
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2670 return modifier_list;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2671 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2672
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2673
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2674 /* 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
2675 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
2676 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
2677 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
2678 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
2679 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
2680 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2681 parse_modifiers (symbol)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2682 Lisp_Object symbol;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2683 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2684 Lisp_Object elements = Fget (symbol, Qevent_symbol_element_mask);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2685
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2686 if (CONSP (elements))
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2687 return elements;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2688 else
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2689 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2690 int end;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2691 int modifiers = parse_modifiers_uncached (symbol, &end);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2692 Lisp_Object unmodified
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2693 = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2694 XSYMBOL (symbol)->name->size - end),
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2695 Qnil);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2696 Lisp_Object mask;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2697
2436
80aafda1127b * keyboard.c (parse_modifiers, apply_modifiers): Make sure we're
Jim Blandy <jimb@redhat.com>
parents: 2434
diff changeset
2698 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
2699 abort ();
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2700 XFASTINT (mask) = modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2701 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
2702
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2703 /* 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
2704 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
2705 elements);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2706 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
2707 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
2708
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2709 /* 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
2710 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
2711 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
2712 canonical. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2713
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2714 return elements;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2715 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2716 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2717
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2718 /* 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
2719 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
2720
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2721 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
2722 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
2723 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
2724
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2725 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
2726 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
2727 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2728 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
2729 int modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2730 Lisp_Object base;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2731 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2732 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
2733
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2734 /* 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
2735 modifiers &= (1<<VALBITS) - 1;
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2736
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2737 /* 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
2738 cache = Fget (base, Qmodifier_cache);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2739 XFASTINT (index) = (modifiers & ~click_modifier);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2740 entry = Fassq (index, cache);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2741
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2742 if (CONSP (entry))
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2743 new_symbol = XCONS (entry)->cdr;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2744 else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2745 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2746 /* We have to create the symbol ourselves. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2747 new_symbol = apply_modifiers_uncached (modifiers,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2748 XSYMBOL (base)->name->data,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2749 XSYMBOL (base)->name->size);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2750
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2751 /* 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
2752 entry = Fcons (index, new_symbol);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2753 Fput (base, Qmodifier_cache, Fcons (entry, cache));
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2754
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2755 /* We have the parsing info now for free, so add it to the caches. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2756 XFASTINT (index) = modifiers;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2757 Fput (new_symbol, Qevent_symbol_element_mask,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2758 Fcons (base, Fcons (index, Qnil)));
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2759 Fput (new_symbol, Qevent_symbol_elements,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2760 Fcons (base, lispy_modifier_list (modifiers)));
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2761 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2762
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2763 /* 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
2764
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2765 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
2766 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
2767 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
2768 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
2769 Qevent_kind set right as well. */
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2770 if (NILP (Fget (new_symbol, Qevent_kind)))
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2771 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2772 Lisp_Object kind = Fget (base, Qevent_kind);
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 if (! NILP (kind))
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2775 Fput (new_symbol, Qevent_kind, kind);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2776 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2777
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2778 return new_symbol;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2779 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2780
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2781
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2782 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2783 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
2784 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
2785 always come last. The 'click' modifier is never written out.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2786
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2787 Fdefine_key calls this to make sure that (for example) C-M-foo
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2788 and M-C-foo end up being equivalent in the keymap. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2789
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2790 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2791 reorder_modifiers (symbol)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2792 Lisp_Object symbol;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2793 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2794 /* 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
2795 will soon be in caches, and no consing will be done at all. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2796 Lisp_Object parsed = parse_modifiers (symbol);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2797
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2798 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
2799 XCONS (parsed)->car);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2800 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2801
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2802
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2803 /* For handling events, we often want to produce a symbol whose name
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2804 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2805 to some base, like the name of a function key or mouse button.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2806 modify_event_symbol produces symbols of this sort.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2807
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2808 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2809 is the name of the i'th symbol. TABLE_SIZE is the number of elements
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2810 in the table.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2811
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2812 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2813 persist between calls to modify_event_symbol that it can use to
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2814 store a cache of the symbols it's generated for this NAME_TABLE
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2815 before.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2816
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2817 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2818
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2819 MODIFIERS is a set of modifier bits (as given in struct input_events)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2820 whose prefixes should be applied to the symbol name.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2821
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2822 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
2823 the returned symbol.
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2824
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2825 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
2826 `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
2827 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
2828
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2829 static Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2830 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_table,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2831 symbol_table, table_size)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2832 int symbol_num;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2833 unsigned modifiers;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2834 Lisp_Object symbol_kind;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2835 char **name_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2836 Lisp_Object *symbol_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2837 int table_size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2838 {
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2839 Lisp_Object *slot;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2840
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2841 /* 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
2842 if (symbol_num < 0 || symbol_num >= table_size)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2843 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2844
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2845 /* 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
2846 *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
2847 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
2848 we've never used that symbol before. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2849 if (XTYPE (*symbol_table) != Lisp_Vector
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2850 || XVECTOR (*symbol_table)->size != table_size)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2851 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2852 Lisp_Object size;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2853
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2854 XFASTINT (size) = table_size;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2855 *symbol_table = Fmake_vector (size, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2856 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2857
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2858 slot = & XVECTOR (*symbol_table)->contents[symbol_num];
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2859
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2860 /* Have we already used this symbol before? */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2861 if (NILP (*slot))
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2862 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2863 /* No; let's create it. */
3042
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2864 if (name_table[symbol_num])
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2865 *slot = intern (name_table[symbol_num]);
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2866 else
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2867 {
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2868 char buf[20];
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2869 sprintf (buf, "key-%d", symbol_num);
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2870 *slot = intern (buf);
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
2871 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2872
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2873 /* 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
2874 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
2875 cares about. */
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
2876 apply_modifiers (modifiers & click_modifier, *slot);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2877 Fput (*slot, Qevent_kind, symbol_kind);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2878 }
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
2879
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2880 /* Apply modifiers to that symbol. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2881 return apply_modifiers (modifiers, *slot);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2882 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
2883
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2884
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2885 /* Store into *addr a value nonzero if terminal input chars are available.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2886 Serves the purpose of ioctl (0, FIONREAD, addr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2887 but works even if FIONREAD does not exist.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2888 (In fact, this may actually read some input.) */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2889
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2890 static void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2891 get_input_pending (addr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2892 int *addr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2893 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2894 /* First of all, have we already counted some input? */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2895 *addr = !NILP (Vquit_flag) || readable_events ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2896
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2897 /* If input is being read as it arrives, and we have none, there is none. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2898 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2899 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2900
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2901 /* Try to read some input and see how much we get. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2902 gobble_input (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2903 *addr = !NILP (Vquit_flag) || readable_events ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2904 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2905
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2906 /* Interface to read_avail_input, blocking SIGIO if necessary. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2907
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2908 int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2909 gobble_input (expected)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2910 int expected;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2911 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2912 #ifndef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2913 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2914 if (interrupt_input)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2915 {
624
2bb7f23b7ea5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 586
diff changeset
2916 SIGMASKTYPE mask;
638
40b255f55df3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 624
diff changeset
2917 mask = sigblockx (SIGIO);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2918 read_avail_input (expected);
638
40b255f55df3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 624
diff changeset
2919 sigsetmask (mask);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2920 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2921 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2922 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2923 read_avail_input (expected);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2924 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2925 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2926
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2927 #ifndef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2928
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2929 /* Read any terminal input already buffered up by the system
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2930 into the kbd_buffer, but do not wait.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2931
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2932 EXPECTED should be nonzero if the caller knows there is some input.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2933
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2934 Except on VMS, all input is read by this function.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2935 If interrupt_input is nonzero, this function MUST be called
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2936 only when SIGIO is blocked.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2937
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2938 Returns the number of keyboard chars read, or -1 meaning
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2939 this is a bad time to try to read input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2940
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2941 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2942 read_avail_input (expected)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2943 int expected;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2944 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2945 struct input_event buf[KBD_BUFFER_SIZE];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2946 register int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2947 int nread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2948
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2949 if (read_socket_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2950 /* No need for FIONREAD or fcntl; just say don't wait. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2951 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2952 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2953 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2954 unsigned char cbuf[KBD_BUFFER_SIZE];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2955
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2956 #ifdef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2957 /* Find out how much input is available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2958 if (ioctl (0, FIONREAD, &nread) < 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2959 /* Formerly simply reported no input, but that sometimes led to
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2960 a failure of Emacs to terminate.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2961 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
2962 /* ??? 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
2963 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
2964 Perhaps on systems with FIONREAD Emacs is alone in its group. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2965 kill (getpid (), SIGHUP);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2966 if (nread == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2967 return 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2968 if (nread > sizeof cbuf)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2969 nread = sizeof cbuf;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2970 #else /* no FIONREAD */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2971 #ifdef USG
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2972 /* Read some input if available, but don't wait. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2973 nread = sizeof cbuf;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2974 fcntl (fileno (stdin), F_SETFL, O_NDELAY);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2975 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2976 you lose;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2977 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2978 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2979
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2980 /* Now read; for one reason or another, this will not block. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2981 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2982 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2983 nread = read (fileno (stdin), cbuf, nread);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2984 #ifdef AIX
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2985 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2986 This looks incorrect, but it isn't, because _BSD causes
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2987 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2988 and that causes a value other than 0 when there is no input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2989 if (nread == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2990 kill (SIGHUP, 0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2991 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2992 /* Retry the read if it is interrupted. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2993 if (nread >= 0
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2994 || ! (errno == EAGAIN || errno == EFAULT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2995 #ifdef EBADSLT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2996 || errno == EBADSLT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2997 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2998 ))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2999 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3000 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3001
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3002 #ifndef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3003 #ifdef USG
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3004 fcntl (fileno (stdin), F_SETFL, 0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3005 #endif /* USG */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3006 #endif /* no FIONREAD */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3007 for (i = 0; i < nread; i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3008 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3009 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
3010 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
3011 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
3012 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
3013 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
3014 cbuf[i] &= ~0x80;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3015
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3016 XSET (buf[i].code, Lisp_Int, cbuf[i]);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3017 #ifdef MULTI_FRAME
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3018 XSET (buf[i].frame_or_window, Lisp_Frame, selected_frame);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3019 #else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3020 buf[i].frame_or_window = Qnil;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3021 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3022 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3023 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3024
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3025 /* Scan the chars for C-g and store them in kbd_buffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3026 for (i = 0; i < nread; i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3027 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3028 kbd_buffer_store_event (&buf[i]);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3029 /* Don't look at input that follows a C-g too closely.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3030 This reduces lossage due to autorepeat on C-g. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3031 if (buf[i].kind == ascii_keystroke
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3032 && XINT(buf[i].code) == quit_char)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3033 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3034 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3035
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3036 return nread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3037 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3038 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3039
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3040 #ifdef SIGIO /* for entire page */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3041 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3042
1119
5d315d54b8b4 * keyboard.c (kbd_buffer_get_event): When performing the
Jim Blandy <jimb@redhat.com>
parents: 1104
diff changeset
3043 SIGTYPE
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3044 input_available_signal (signo)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3045 int signo;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3046 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3047 /* Must preserve main program's value of errno. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3048 int old_errno = errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3049 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3050 extern int select_alarmed;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3051 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3052
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3053 #ifdef USG
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3054 /* USG systems forget handlers when they are used;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3055 must reestablish each time */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3056 signal (signo, input_available_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3057 #endif /* USG */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3058
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3059 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3060 sigisheld (SIGIO);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3061 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3062
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
3063 if (input_available_clear_time)
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
3064 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3065
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3066 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3067 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3068 int nread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3069 nread = read_avail_input (1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3070 /* -1 means it's not ok to read the input now.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3071 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3072 0 means there was no keyboard input available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3073 if (nread <= 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3074 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3075
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3076 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3077 select_alarmed = 1; /* Force the select emulator back to life */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3078 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3079 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3080
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3081 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3082 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3083 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3084 errno = old_errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3085 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3086 #endif /* SIGIO */
2726
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3087
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3088 /* Send ourselves a SIGIO.
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3089
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3090 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
3091 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
3092 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
3093 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
3094 void
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3095 reinvoke_input_signal ()
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3096 {
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3097 #ifdef SIGIO
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3098 kill (0, SIGIO);
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3099 #endif
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3100 }
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3101
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
3102
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3103
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3104 /* Return the prompt-string of a sparse keymap.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3105 This is the first element which is a string.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3106 Return nil if there is none. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3107
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3108 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3109 map_prompt (map)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3110 Lisp_Object map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3111 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3112 while (CONSP (map))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3113 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3114 register Lisp_Object tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3115 tem = Fcar (map);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3116 if (XTYPE (tem) == Lisp_String)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3117 return tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3118 map = Fcdr (map);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3119 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3120 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3121 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3122
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3123 static Lisp_Object menu_bar_item ();
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3124 static Lisp_Object menu_bar_one_keymap ();
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3125
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3126 /* Return a list of menu items for a menu bar, appropriate
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3127 to the current buffer.
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3128 The elements have the form (KEY STRING . nil). */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3129
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3130 Lisp_Object
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3131 menu_bar_items ()
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3132 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3133 /* 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
3134 keymaps we have allocated space for. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3135 int nmaps;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3136
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3137 /* 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
3138 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
3139 Lisp_Object *maps;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3140
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3141 Lisp_Object def, tem;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3142
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3143 Lisp_Object result;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3144
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3145 int mapno;
3255
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
3146 Lisp_Object oquit;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3147
3209
1166db56c752 * keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents: 3174
diff changeset
3148 /* 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
3149 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
3150 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
3151 quitting while building the menus.
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
3152 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
3153 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
3154 oquit = Vinhibit_quit;
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
3155 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
3156
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3157 /* Build our list of keymaps.
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3158 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
3159 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
3160 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
3161 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
3162 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3163 Lisp_Object *tmaps;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3164
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3165 nmaps = current_minor_maps (0, &tmaps) + 2;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3166 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3167 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0]));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3168 #ifdef USE_TEXT_PROPERTIES
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3169 maps[nmaps-2] = get_local_map (PT, current_buffer);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3170 #else
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3171 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
3172 #endif
3887
d8eb17d07558 * keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents: 3861
diff changeset
3173 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
3174 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3175
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3176 /* 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
3177
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3178 result = Qnil;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3179
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3180 for (mapno = 0; mapno < nmaps; mapno++)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3181 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3182 if (! NILP (maps[mapno]))
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
3183 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
3184 else
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3185 def = Qnil;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3186
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3187 tem = Fkeymapp (def);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3188 if (!NILP (tem))
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3189 result = menu_bar_one_keymap (def, result);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3190 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3191
3276
4a1d8a111149 (menu_bar_items): Call Fnreverse before restoring Vinhibit_quit.
Richard M. Stallman <rms@gnu.org>
parents: 3255
diff changeset
3192 result = Fnreverse (result);
3255
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
3193 Vinhibit_quit = oquit;
3276
4a1d8a111149 (menu_bar_items): Call Fnreverse before restoring Vinhibit_quit.
Richard M. Stallman <rms@gnu.org>
parents: 3255
diff changeset
3194 return result;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3195 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3196
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3197 /* Scan one map KEYMAP, accumulating any menu items it defines
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3198 that have not yet been seen in RESULT. Return the updated RESULT. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3199
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3200 static Lisp_Object
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3201 menu_bar_one_keymap (keymap, result)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3202 Lisp_Object keymap, result;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3203 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3204 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
3205
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3206 /* Loop over all keymap entries that have menu strings. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3207 for (tail = keymap; XTYPE (tail) == Lisp_Cons; tail = XCONS (tail)->cdr)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3208 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3209 item = XCONS (tail)->car;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3210 if (XTYPE (item) == Lisp_Cons)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3211 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3212 key = XCONS (item)->car;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3213 binding = XCONS (item)->cdr;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3214 if (XTYPE (binding) == Lisp_Cons)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3215 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3216 item_string = XCONS (binding)->car;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3217 if (XTYPE (item_string) == Lisp_String)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3218 result = menu_bar_item (key, item_string,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3219 Fcdr (binding), result);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3220 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3221 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3222 else if (XTYPE (item) == Lisp_Vector)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3223 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3224 /* 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
3225 int len = XVECTOR (item)->size;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3226 int c;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3227 for (c = 0; c < len; c++)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3228 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3229 Lisp_Object character;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3230 XFASTINT (character) = c;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3231 binding = XVECTOR (item)->contents[c];
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3232 if (XTYPE (binding) == Lisp_Cons)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3233 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3234 item_string = XCONS (binding)->car;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3235 if (XTYPE (item_string) == Lisp_String)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3236 result = menu_bar_item (key, item_string,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3237 Fcdr (binding), result);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3238 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3239 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3240 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3241 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3242
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3243 return result;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3244 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3245
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3246 static Lisp_Object
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3247 menu_bar_item (key, item_string, def, result)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3248 Lisp_Object key, item_string, def, result;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3249 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3250 Lisp_Object tem, elt;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3251 Lisp_Object enabled;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3252
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3253 /* See if this entry is enabled. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3254 enabled = Qt;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3255
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3256 if (XTYPE (def) == Lisp_Symbol)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3257 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3258 /* No property, or nil, means enable.
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3259 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
3260 tem = Fget (def, Qmenu_enable);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3261 if (!NILP (tem))
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3262 enabled = Feval (tem);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3263 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3264
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3265 /* Add an entry for this key and string
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3266 if there is none yet. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3267 elt = Fassq (key, result);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3268 if (!NILP (enabled) && NILP (elt))
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3269 result = Fcons (Fcons (key, Fcons (item_string, Qnil)), result);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3270
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3271 return result;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3272 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3273
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3274 static int echo_flag;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3275 static int echo_now;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3276
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3277 /* Read a character like read_char but optionally prompt based on maps
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3278 in the array MAPS. NMAPS is the length of MAPS. Return nil if we
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3279 decided not to read a character, because there are no menu items in
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3280 MAPS.
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3281
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3282 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
3283 the first event of a key sequence.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3284
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
3285 If USED_MOUSE_MENU 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
3286 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
3287 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3288
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3289 The prompting is done based on the prompt-string of the map
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3290 and the strings associated with various map elements. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3291
3453
1fd89e975a78 (read_char_menu_prompt): Now static. Add declaration.
Richard M. Stallman <rms@gnu.org>
parents: 3452
diff changeset
3292 static Lisp_Object
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3293 read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3294 int nmaps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3295 Lisp_Object *maps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3296 Lisp_Object prev_event;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3297 int *used_mouse_menu;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3298 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3299 int mapno;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3300 register Lisp_Object name;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3301 int nlength;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
3302 int width = FRAME_WIDTH (selected_frame) - 4;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3303 char *menu = (char *) alloca (width + 4);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3304 int idx = -1;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3305 Lisp_Object rest, vector;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3306
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
3307 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
3308 *used_mouse_menu = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3309
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3310 /* Use local over global Menu maps */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3311
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3312 if (! menu_prompting)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3313 return Qnil;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3314
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3315 /* 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
3316 for (mapno = 0; mapno < nmaps; mapno++)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3317 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3318 name = map_prompt (maps[mapno]);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3319 if (!NILP (name))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3320 break;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3321 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3322
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3323 /* 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
3324 if (mapno >= nmaps)
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3325 return Qnil;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3326
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3327 #ifdef HAVE_X_WINDOWS
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3328 #ifdef HAVE_X_MENU
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3329 /* 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
3330 use a real menu for mouse selection. */
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3331 if (EVENT_HAS_PARAMETERS (prev_event))
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3332 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3333 /* Display the menu and get the selection. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3334 Lisp_Object *realmaps
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3335 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3336 Lisp_Object value;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3337 int nmaps1 = 0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3338
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3339 /* Use the maps that are not nil. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3340 for (mapno = 0; mapno < nmaps; mapno++)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3341 if (!NILP (maps[mapno]))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3342 realmaps[nmaps1++] = maps[mapno];
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3343
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3344 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
3345 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
3346 {
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
3347 /* 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
3348 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
3349 Return just the first event now. */
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
3350 unread_command_events
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
3351 = nconc2 (XCONS (value)->cdr, unread_command_events);
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
3352 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
3353 }
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3354 if (NILP (value))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3355 XSET (value, Lisp_Int, quit_char);
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
3356 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
3357 *used_mouse_menu = 1;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3358 return value;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3359 }
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3360 #endif /* HAVE_X_MENU */
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3361 #endif /* HAVE_X_WINDOWS */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3362
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3363 /* Prompt string always starts with map's prompt, and a space. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3364 strcpy (menu, XSTRING (name)->data);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3365 nlength = XSTRING (name)->size;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3366 menu[nlength++] = ':';
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3367 menu[nlength++] = ' ';
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3368 menu[nlength] = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3369
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3370 /* Start prompting at start of first map. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3371 mapno = 0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3372 rest = maps[mapno];
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3373
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3374 /* Present the documented bindings, a line at a time. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3375 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3376 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3377 int notfirst = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3378 int i = nlength;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3379 Lisp_Object obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3380 int ch;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3381
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3382 /* Loop over elements of map. */
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3383 while (i < width)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3384 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3385 Lisp_Object s, elt;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3386
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3387 /* 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
3388 if (NILP (rest))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3389 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3390 mapno++;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3391 /* 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
3392 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
3393 if (mapno == nmaps)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3394 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3395 if (notfirst)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3396 break;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3397 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3398 mapno = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3399 }
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3400 rest = maps[mapno];
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3401 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3402
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3403 /* Look at the next element of the map. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3404 if (idx >= 0)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3405 elt = XVECTOR (vector)->contents[idx];
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3406 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3407 elt = Fcar_safe (rest);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3408
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3409 if (idx < 0 && XTYPE (elt) == Lisp_Vector)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3410 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3411 /* 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
3412 advanced past it, but start scanning its contents. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3413 rest = Fcdr_safe (rest);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3414 vector = elt;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3415 idx = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3416 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3417 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3418 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3419 /* An ordinary element. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3420 s = Fcar_safe (Fcdr_safe (elt));
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3421 if (XTYPE (s) != Lisp_String)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3422 /* 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
3423 ;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3424 /* 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
3425 If this is the first on the line, always add it. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3426 else if (XSTRING (s)->size + i < width
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3427 || !notfirst)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3428 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3429 int thiswidth;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3430
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3431 /* Punctuate between strings. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3432 if (notfirst)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3433 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3434 strcpy (menu + i, ", ");
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3435 i += 2;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3436 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3437 notfirst = 1;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3438
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3439 /* Add as much of string as fits. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3440 thiswidth = XSTRING (s)->size;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3441 if (thiswidth + i > width)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3442 thiswidth = width - i;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3443 bcopy (XSTRING (s)->data, menu + i, thiswidth);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3444 i += thiswidth;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3445 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3446 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3447 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3448 /* 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
3449 and save the element for the next line. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3450 strcpy (menu + i, "...");
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3451 break;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3452 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3453
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3454 /* Move past this element. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3455 if (idx >= 0 && idx + 1 >= XVECTOR (rest)->size)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3456 /* Handle reaching end of dense table. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3457 idx = -1;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3458 if (idx >= 0)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3459 idx++;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3460 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3461 rest = Fcdr_safe (rest);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3462 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3463 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3464
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3465 /* Prompt with that and read response. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3466 message1 (menu);
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3467 obj = read_char (1, 0, 0, Qnil, 0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3468
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3469 if (XTYPE (obj) != Lisp_Int)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3470 return obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3471 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3472 ch = XINT (obj);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3473
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3474 if (! EQ (obj, menu_prompt_more_char)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3475 && (XTYPE (menu_prompt_more_char) != Lisp_Int
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3476 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3477 return obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3478 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3479 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3480
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3481 /* Reading key sequences. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3482
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3483 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3484 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3485 keymap, or nil otherwise. Return the index of the first keymap in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3486 which KEY has any binding, or NMAPS if no map has a binding.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3487
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3488 If KEY is a meta ASCII character, treat it like meta-prefix-char
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3489 followed by the corresponding non-meta character. Keymaps in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3490 CURRENT with non-prefix bindings for meta-prefix-char become nil in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3491 NEXT.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3492
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3493 When KEY is not defined in any of the keymaps, if it is an upper
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3494 case letter and there are bindings for the corresponding lower-case
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3495 letter, return the bindings for the lower-case letter.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3496
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3497 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
3498 unmodified.
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3499
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3500 NEXT may == CURRENT. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3501
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3502 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3503 follow_key (key, nmaps, current, defs, next)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3504 Lisp_Object key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3505 Lisp_Object *current, *defs, *next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3506 int nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3507 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3508 int i, first_binding;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3509
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3510 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3511 followed by the corresponding non-meta character. */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3512 if (XTYPE (key) == Lisp_Int && (XINT (key) & CHAR_META))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3513 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3514 for (i = 0; i < nmaps; i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3515 if (! NILP (current[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3516 {
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3517 next[i] =
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
3518 get_keyelt (access_keymap (current[i], meta_prefix_char, 1, 0));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3519
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3520 /* Note that since we pass the resulting bindings through
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3521 get_keymap_1, non-prefix bindings for meta-prefix-char
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3522 disappear. */
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3523 next[i] = get_keymap_1 (next[i], 0, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3524 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3525 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3526 next[i] = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3527
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3528 current = next;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3529 XSET (key, Lisp_Int, XFASTINT (key) & ~CHAR_META);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3530 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3531
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3532 first_binding = nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3533 for (i = nmaps - 1; i >= 0; i--)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3534 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3535 if (! NILP (current[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3536 {
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
3537 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3538 if (! NILP (defs[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3539 first_binding = i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3540 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3541 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3542 defs[i] = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3543 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3544
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3545 /* When KEY is not defined in any of the keymaps, if it is an upper
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3546 case letter and there are bindings for the corresponding
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3547 lower-case letter, return the bindings for the lower-case letter. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3548 if (first_binding == nmaps
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3549 && XTYPE (key) == Lisp_Int
2892
7ff263825550 (follow_key): Check char in range before UPPERCASEP.
Richard M. Stallman <rms@gnu.org>
parents: 2868
diff changeset
3550 && ((((XINT (key) & 0x3ffff)
7ff263825550 (follow_key): Check char in range before UPPERCASEP.
Richard M. Stallman <rms@gnu.org>
parents: 2868
diff changeset
3551 < XSTRING (current_buffer->downcase_table)->size)
7ff263825550 (follow_key): Check char in range before UPPERCASEP.
Richard M. Stallman <rms@gnu.org>
parents: 2868
diff changeset
3552 && UPPERCASEP (XINT (key) & 0x3ffff))
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3553 || (XINT (key) & shift_modifier)))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3554 {
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3555 if (XINT (key) & shift_modifier)
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3556 XSETINT (key, XINT (key) & ~shift_modifier);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3557 else
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3558 XSETINT (key, DOWNCASE (XINT (key)));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3559
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3560 first_binding = nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3561 for (i = nmaps - 1; i >= 0; i--)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3562 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3563 if (! NILP (current[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3564 {
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
3565 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3566 if (! NILP (defs[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3567 first_binding = i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3568 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3569 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3570 defs[i] = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3571 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3572 }
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3573
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3574 /* 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
3575 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
3576 for (i = 0; i < nmaps; i++)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3577 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3578
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3579 return first_binding;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3580 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3581
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3582 /* 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
3583 storing it in KEYBUF, a buffer of size BUFSIZE.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3584 Prompt with PROMPT.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3585 Return the length of the key sequence stored.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3586
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3587 Echo starting immediately unless `prompt' is 0.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3588
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3589 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
3590 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
3591 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
3592
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3593 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
3594 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
3595 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
3596 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
3597
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3598 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
3599 `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
3600 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
3601 then into clicks.
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3602
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3603 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
3604 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
3605 symbol denoting that area - `mode-line', `vertical-line', or
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3606 whatever.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3607
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3608 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
3609 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
3610
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3611 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
3612 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
3613 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
3614
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3615 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3616 read_key_sequence (keybuf, bufsize, prompt)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3617 Lisp_Object *keybuf;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3618 int bufsize;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3619 char *prompt;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3620 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3621 int count = specpdl_ptr - specpdl;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3622
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3623 /* How many keys there are in the current key sequence. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3624 int t;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3625
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3626 /* The length of the echo buffer when we started reading, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3627 the length of this_command_keys when we started reading. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3628 int echo_start;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3629 int keys_start;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3630
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3631 /* The number of keymaps we're scanning right now, and the number of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3632 keymaps we have allocated space for. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3633 int nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3634 int nmaps_allocated = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3635
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3636 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3637 the current keymaps. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3638 Lisp_Object *defs;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3639
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3640 /* 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
3641 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
3642 Lisp_Object *submaps;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3643
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3644 /* 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
3645 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
3646 defs[i] is non-nil. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3647 int first_binding;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3648
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3649 /* If t < mock_input, then KEYBUF[t] should be read as the next
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3650 input key.
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3651
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3652 We use this to recover after recognizing a function key. Once we
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3653 realize that a suffix of the current key sequence is actually a
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3654 function key's escape sequence, we replace the suffix with the
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3655 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
3656 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
3657 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
3658 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
3659 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
3660 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
3661 reading characters from the keyboard. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3662 int mock_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3663
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3664 /* If the sequence is unbound in submaps[], then
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3665 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
3666 and fkey_map is its binding.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3667
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3668 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
3669 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
3670 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
3671 key's again in Vfunction_key_map. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3672 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
3673 Lisp_Object fkey_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3674
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3675 /* 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
3676 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
3677 Lisp_Object delayed_switch_frame;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3678
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3679 Lisp_Object first_event;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3680
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3681 int junk;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3682
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3683 last_nonmenu_event = Qnil;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3684
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3685 delayed_switch_frame = Qnil;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3686 fkey_map = Vfunction_key_map;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3687
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3688 /* If there is no function key map, turn off function key scanning. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3689 if (NILP (Fkeymapp (Vfunction_key_map)))
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3690 fkey_start = fkey_end = bufsize + 1;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3691
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3692 if (INTERACTIVE)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3693 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3694 if (prompt)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3695 echo_prompt (prompt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3696 else if (cursor_in_echo_area)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3697 /* This doesn't put in a dash if the echo buffer is empty, so
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3698 you don't always see a dash hanging out in the minibuffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3699 echo_dash ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3700 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3701
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3702 /* 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
3703 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
3704 if (INTERACTIVE)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3705 echo_start = echo_length ();
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3706 keys_start = this_command_key_count;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3707
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3708 #if 0 /* This doesn't quite work, because some of the things
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3709 that read_char does cannot safely be bypassed.
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3710 It seems too risky to try to make this work right. */
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3711 /* 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
3712 up any keymaps, in case a filter runs and switches buffers on us. */
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3713 first_event = read_char (!prompt, 0, submaps, last_nonmenu_event,
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3714 &junk);
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3715 #endif
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
3716
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3717 /* 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
3718 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
3719 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
3720 replay_sequence:
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3721
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3722 /* Build our list of keymaps.
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
3723 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
3724 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
3725 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
3726 the initial keymaps from the current buffer. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3727 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3728 Lisp_Object *maps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3729
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3730 nmaps = current_minor_maps (0, &maps) + 2;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3731 if (nmaps > nmaps_allocated)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3732 {
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3733 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3734 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3735 nmaps_allocated = nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3736 }
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3737 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0]));
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
3738 #ifdef USE_TEXT_PROPERTIES
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
3739 submaps[nmaps-2] = get_local_map (PT, current_buffer);
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
3740 #else
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3741 submaps[nmaps-2] = current_buffer->keymap;
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
3742 #endif
3887
d8eb17d07558 * keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents: 3861
diff changeset
3743 submaps[nmaps-1] = current_global_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3744 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3745
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3746 /* Find an accurate initial value for first_binding. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3747 for (first_binding = 0; first_binding < nmaps; first_binding++)
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3748 if (! NILP (submaps[first_binding]))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3749 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3750
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3751 /* We jump here when a function key substitution has forced us to
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3752 reprocess the current key sequence. keybuf[0..mock_input] is the
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3753 sequence we want to reread. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3754 t = 0;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3755
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3756 /* 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
3757 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
3758 this_command_key_count = keys_start;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3759 if (INTERACTIVE)
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3760 echo_truncate (echo_start);
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3761
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3762 /* 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
3763 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
3764 reading. */
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3765 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
3766 || (first_binding >= nmaps
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3767 && fkey_start < t
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3768 /* mock input is never part of a function key's sequence. */
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3769 && mock_input <= fkey_start))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3770 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3771 Lisp_Object key;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
3772 int used_mouse_menu = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3773
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3774 /* 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
3775 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
3776 (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
3777 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
3778 of keybuf. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3779 int last_real_key_start;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3780
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3781 /* 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
3782 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
3783 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
3784 just one key. */
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3785 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
3786
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3787 if (t >= bufsize)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3788 error ("key sequence too long");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3789
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3790 if (INTERACTIVE)
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3791 echo_local_start = echo_length ();
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3792 keys_local_start = this_command_key_count;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3793 local_first_binding = first_binding;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3794
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3795 replay_key:
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3796 /* 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
3797 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
3798 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
3799 loop. */
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3800 if (INTERACTIVE)
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3801 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
3802 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
3803 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
3804
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3805 /* Does mock_input indicate that we are re-reading a key sequence? */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3806 if (t < mock_input)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3807 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3808 key = keybuf[t];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3809 add_command_key (key);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3810 echo_char (key);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3811 }
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3812
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3813 /* If not, we should actually read a character. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3814 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3815 {
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3816 struct buffer *buf = current_buffer;
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3817
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3818 last_real_key_start = t;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3819
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3820 key = read_char (!prompt, nmaps, submaps, last_nonmenu_event,
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3821 &used_mouse_menu);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3822
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3823 /* read_char returns -1 at the end of a macro.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3824 Emacs 18 handles this by returning immediately with a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3825 zero, so that's what we'll do. */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3826 if (XTYPE (key) == Lisp_Int && XINT (key) == -1)
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3827 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3828 t = 0;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3829 goto done;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3830 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3831
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3832 Vquit_flag = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3833
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3834 /* Clicks in non-text areas get prefixed by the symbol
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3835 in their CHAR-ADDRESS field. For example, a click on
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3836 the mode line is prefixed by the symbol `mode-line'.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3837
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3838 Furthermore, key sequences beginning with mouse clicks
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3839 are read using the keymaps of the buffer clicked on, not
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3840 the current buffer. So we may have to switch the buffer
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3841 here.
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3842
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3843 If the event was obtained from the unread_command_events
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3844 queue, then don't expand it; we did that the first time
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3845 we read it. */
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3846 if (EVENT_HAS_PARAMETERS (key))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3847 {
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3848 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3849
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3850 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
3851 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3852 Lisp_Object window = POSN_WINDOW (EVENT_START (key));
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3853 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key));
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3854
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3855 /* Key sequences beginning with mouse clicks are
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3856 read using the keymaps in the buffer clicked on,
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3857 not the current buffer. If we're at the
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3858 beginning of a key sequence, switch buffers. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3859 if (t == 0
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3860 && XTYPE (window) == Lisp_Window
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3861 && XTYPE (XWINDOW (window)->buffer) == Lisp_Buffer
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3862 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3863 {
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3864 keybuf[t] = key;
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3865 mock_input = t + 1;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3866
2868
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3867 /* Arrange to go back to the original buffer once we're
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3868 done reading the key sequence. Note that we can't
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3869 use save_excursion_{save,restore} here, because they
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3870 save point as well as the current buffer; we don't
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3871 want to save point, because redisplay may change it,
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
3872 to accommodate a Fset_window_start or something. We
2868
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3873 don't want to do this at the top of the function,
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3874 because we may get input from a subprocess which
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3875 wants to change the selected window and stuff (say,
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3876 emacsclient). */
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3877 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
998ec1083f3d * keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents: 2867
diff changeset
3878
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3879 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
3880 goto replay_sequence;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3881 }
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3882 else if (XTYPE (posn) == Lisp_Symbol)
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3883 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3884 if (t + 1 >= bufsize)
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3885 error ("key sequence too long");
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3886 keybuf[t] = posn;
3799
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
3887 keybuf[t+1] = key;
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
3888 mock_input = t + 2;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3889
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3890 /* Zap the position in key, so we know that we've
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3891 expanded it, and don't try to do so again. */
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3892 POSN_BUFFER_POSN (EVENT_START (key))
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3893 = Fcons (posn, Qnil);
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3894
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3895 /* If we switched buffers while reading the first event,
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3896 replay in case we switched keymaps too. */
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3897 if (buf != current_buffer && t == 0)
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3898 goto replay_sequence;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3899 goto replay_key;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3900 }
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3901 else if (XTYPE (posn) == Lisp_Cons)
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3902 {
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3903 /* We're looking at the second event of a
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3904 sequence which we expanded before. Set
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3905 last_real_key_start appropriately. */
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3906 if (last_real_key_start == t && t > 0)
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3907 last_real_key_start = t - 1;
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
3908 }
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3909 }
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3910 else if (EQ (kind, Qswitch_frame))
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3911 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3912 /* If we're at the beginning of a key sequence, go
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3913 ahead and return this event. If we're in the
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3914 midst of a key sequence, delay it until the end. */
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3915 if (t > 0)
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3916 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3917 delayed_switch_frame = key;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3918 goto replay_key;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3919 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3920 }
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3921 else
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3922 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3923 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3924
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3925 /* Handle menu-bar events:
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3926 insert the dummy prefix char `menu-bar'. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3927 if (EQ (posn, Qmenu_bar))
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3928 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3929 if (t + 1 >= bufsize)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3930 error ("key sequence too long");
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3931 /* Run the Lucid hook. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3932 call1 (Vrun_hooks, Qactivate_menubar_hook);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3933 /* 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
3934 really recompute the menubar from the value. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3935 if (! NILP (Vlucid_menu_bar_dirty_flag))
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3936 call0 (Qrecompute_lucid_menubar);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3937 keybuf[t] = posn;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3938 keybuf[t+1] = key;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3939 mock_input = t + 2;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3940 goto replay_sequence;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3941 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3942 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3943 }
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3944
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3945 /* If we switched buffers while reading the first event,
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3946 replay in case we switched keymaps too. */
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3947 if (buf != current_buffer && t == 0)
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3948 {
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3949 keybuf[t++] = key;
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3950 mock_input = t;
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3951 goto replay_sequence;
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
3952 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3953 }
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3954
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3955 /* 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
3956 to look up. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3957 first_binding = (follow_key (key,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3958 nmaps - first_binding,
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3959 submaps + first_binding,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3960 defs + first_binding,
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
3961 submaps + first_binding)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3962 + first_binding);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3963
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
3964 /* 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
3965 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
3966 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3967 Lisp_Object head = EVENT_HEAD (key);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3968
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3969 if (XTYPE (head) == Lisp_Symbol)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3970 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3971 Lisp_Object breakdown = parse_modifiers (head);
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3972 int modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3973
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3974 /* We drop unbound `down-' events altogether. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3975 if (modifiers & down_modifier)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3976 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3977 /* Dispose of this event by simply jumping back to
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3978 replay_key, to get another event.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3979
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3980 Note that if this event came from mock input,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3981 then just jumping back to replay_key will just
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3982 hand it to us again. So we have to wipe out any
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3983 mock input.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3984
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3985 We could delete keybuf[t] and shift everything
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3986 after that to the left by one spot, but we'd also
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3987 have to fix up any variable that points into
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3988 keybuf, and shifting isn't really necessary
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3989 anyway.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3990
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3991 Adding prefixes for non-textual mouse clicks
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3992 creates two characters of mock input, and both
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3993 must be thrown away. If we're only looking at
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3994 the prefix now, we can just jump back to
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3995 replay_key. On the other hand, if we've already
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3996 processed the prefix, and now the actual click
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3997 itself is giving us trouble, then we've lost the
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3998 state of the keymaps we want to backtrack to, and
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3999 we need to replay the whole sequence to rebuild
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4000 it.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4001
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4002 Beyond that, only function key expansion could
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4003 create more than two keys, but that should never
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4004 generate mouse events, so it's okay to zero
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4005 mock_input in that case too.
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4006
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4007 Isn't this just the most wonderful code ever? */
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4008 if (t == last_real_key_start)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4009 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4010 mock_input = 0;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4011 goto replay_key;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4012 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4013 else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4014 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4015 mock_input = last_real_key_start;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4016 goto replay_sequence;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4017 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4018 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4019
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4020 /* We turn unbound `drag-' events into `click-'
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4021 events, if the click would be bound. */
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4022 else if (modifiers & (drag_modifier | double_modifier
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4023 | triple_modifier))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4024 {
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4025 while (modifiers & (drag_modifier | double_modifier
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4026 | triple_modifier))
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4027 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4028 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
4029 if (modifiers & triple_modifier)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4030 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
4031 else
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4032 modifiers &= ~(drag_modifier | double_modifier);
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4033 new_head =
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4034 apply_modifiers (modifiers, XCONS (breakdown)->car);
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4035 new_click =
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4036 Fcons (new_head, Fcons (EVENT_START (key), Qnil));
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4037
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4038 /* 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
4039 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
4040 last time we called it, since key was unbound. */
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4041 first_binding =
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4042 (follow_key (new_click,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4043 nmaps - local_first_binding,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4044 submaps + local_first_binding,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4045 defs + local_first_binding,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4046 submaps + local_first_binding)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4047 + local_first_binding);
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4048
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4049 /* 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
4050 if (first_binding < nmaps)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4051 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4052 key = new_click;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4053 break;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4054 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
4055 /* 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
4056 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4057 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4058 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4059 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4060
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4061 keybuf[t++] = key;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4062 /* 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
4063 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
4064 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
4065 event that preceded the first level of menu. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4066 if (!used_mouse_menu)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4067 last_nonmenu_event = key;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4068
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4069 /* If the sequence is unbound, see if we can hang a function key
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
4070 off the end of it. We only want to scan real keyboard input
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
4071 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
4072 re-reading old events, don't examine it. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4073 if (first_binding >= nmaps
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
4074 && t >= mock_input)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4075 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4076 Lisp_Object fkey_next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4077
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4078 /* Scan from fkey_end until we find a bound suffix. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4079 while (fkey_end < t)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4080 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4081 Lisp_Object key;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4082
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4083 key = keybuf[fkey_end++];
853
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
4084 /* Look up meta-characters by prefixing them
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
4085 with meta_prefix_char. I hate this. */
2056
0c95942fc8da (read_key_sequence):
Richard M. Stallman <rms@gnu.org>
parents: 2045
diff changeset
4086 if (XTYPE (key) == Lisp_Int && XINT (key) & meta_modifier)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4087 {
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
4088 fkey_next
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
4089 = get_keymap_1
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4090 (get_keyelt
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
4091 (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
4092 0, 1);
2056
0c95942fc8da (read_key_sequence):
Richard M. Stallman <rms@gnu.org>
parents: 2045
diff changeset
4093 XFASTINT (key) = XFASTINT (key) & ~meta_modifier;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4094 }
853
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
4095 else
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
4096 fkey_next = fkey_map;
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
4097
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
4098 fkey_next
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
4099 = 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
4100
c4dcdc9aed70 Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents: 899
diff changeset
4101 /* If keybuf[fkey_start..fkey_end] is bound in the
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
4102 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
4103 sequence (i.e. fkey_end == t), replace it with
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
4104 the binding and restart with fkey_start at the end. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4105 if (XTYPE (fkey_next) == Lisp_Vector
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4106 && fkey_end == t)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4107 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4108 t = fkey_start + XVECTOR (fkey_next)->size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4109 if (t >= bufsize)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4110 error ("key sequence too long");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4111
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4112 bcopy (XVECTOR (fkey_next)->contents,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4113 keybuf + fkey_start,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4114 (t - fkey_start) * sizeof (keybuf[0]));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4115
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4116 mock_input = t;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4117 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
4118 fkey_map = Vfunction_key_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4119
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4120 goto replay_sequence;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4121 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4122
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4123 fkey_map = get_keymap_1 (fkey_next, 0, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4124
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
4125 /* If we no longer have a bound suffix, try a new positions for
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
4126 fkey_start. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4127 if (NILP (fkey_map))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4128 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4129 fkey_end = ++fkey_start;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4130 fkey_map = Vfunction_key_map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4131 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4132 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4133 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4134 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4135
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4136 read_key_sequence_cmd = (first_binding < nmaps
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4137 ? defs[first_binding]
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4138 : Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4139
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4140 done:
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
4141 unread_switch_frame = delayed_switch_frame;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4142 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
4143
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
4144 /* 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
4145 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
4146 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
4147 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
4148 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
4149 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
4150 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
4151
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
4152 Better ideas? */
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
4153 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
4154 {
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
4155 echo_char (keybuf[t]);
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
4156 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
4157 }
3799
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
4158
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4159 return t;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4160 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4161
691
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
4162 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4163 "Read a sequence of keystrokes and return as a string or vector.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4164 The sequence is sufficient to specify a non-prefix command in the\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4165 current local and global maps.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4166 \n\
691
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
4167 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
4168 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
4169 as a continuation of the previous key.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4170 \n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4171 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
4172 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
4173 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4174 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
4175 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
4176 of the selected window as normal.\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4177 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4178 `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
4179 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
4180 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
4181 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
4182 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
4183 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
4184 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4185 `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
4186 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
4187 `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
4188 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4189 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
4190 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
4191 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
4192 `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
4193 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
4194 `function-key-map' for more details.")
691
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
4195 (prompt, continue_echo)
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
4196 Lisp_Object prompt, continue_echo;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4197 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4198 Lisp_Object keybuf[30];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4199 register int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4200 struct gcpro gcpro1, gcpro2;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4201
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4202 if (!NILP (prompt))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4203 CHECK_STRING (prompt, 0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4204 QUIT;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4205
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4206 bzero (keybuf, sizeof keybuf);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4207 GCPRO1 (keybuf[0]);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4208 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4209
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 721
diff changeset
4210 if (NILP (continue_echo))
691
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
4211 this_command_key_count = 0;
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
4212
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4213 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
4214 NILP (prompt) ? 0 : XSTRING (prompt)->data);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4215
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4216 UNGCPRO;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4217 return make_event_array (i, keybuf);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4218 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4219
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4220 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4221 "Execute CMD as an editor command.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4222 CMD must be a symbol that satisfies the `commandp' predicate.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4223 Optional second arg RECORD-FLAG non-nil\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4224 means unconditionally put this command in `command-history'.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4225 Otherwise, that is done only if an arg is read using the minibuffer.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4226 (cmd, record)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4227 Lisp_Object cmd, record;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4228 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4229 register Lisp_Object final;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4230 register Lisp_Object tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4231 Lisp_Object prefixarg;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4232 struct backtrace backtrace;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4233 extern int debug_on_next_call;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4234
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4235 prefixarg = Vprefix_arg, Vprefix_arg = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4236 Vcurrent_prefix_arg = prefixarg;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4237 debug_on_next_call = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4238
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4239 if (XTYPE (cmd) == Lisp_Symbol)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4240 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4241 tem = Fget (cmd, Qdisabled);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4242 if (!NILP (tem))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4243 return call1 (Vrun_hooks, Vdisabled_command_hook);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4244 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4245
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4246 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4247 {
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4248 final = Findirect_function (cmd);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4249
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4250 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4251 do_autoload (final, cmd);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4252 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4253 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4254 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4255
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4256 if (XTYPE (final) == Lisp_String
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4257 || XTYPE (final) == Lisp_Vector)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4258 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4259 /* If requested, place the macro in the command history. For
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4260 other sorts of commands, call-interactively takes care of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4261 this. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4262 if (!NILP (record))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4263 Vcommand_history
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4264 = Fcons (Fcons (Qexecute_kbd_macro,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4265 Fcons (final, Fcons (prefixarg, Qnil))),
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4266 Vcommand_history);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4267
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4268 return Fexecute_kbd_macro (final, prefixarg);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4269 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4270 if (CONSP (final) || XTYPE (final) == Lisp_Subr
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4271 || XTYPE (final) == Lisp_Compiled)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4272 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4273 backtrace.next = backtrace_list;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4274 backtrace_list = &backtrace;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4275 backtrace.function = &Qcall_interactively;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4276 backtrace.args = &cmd;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4277 backtrace.nargs = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4278 backtrace.evalargs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4279
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4280 tem = Fcall_interactively (cmd, record);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4281
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4282 backtrace_list = backtrace.next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4283 return tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4284 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4285 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4286 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4287
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4288 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4289 1, 1, "P",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4290 "Read function name, then read its arguments and call it.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4291 (prefixarg)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4292 Lisp_Object prefixarg;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4293 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4294 Lisp_Object function;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4295 char buf[40];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4296 Lisp_Object saved_keys;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4297 struct gcpro gcpro1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4298
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4299 saved_keys = Fthis_command_keys ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4300 buf[0] = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4301 GCPRO1 (saved_keys);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4302
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4303 if (EQ (prefixarg, Qminus))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4304 strcpy (buf, "- ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4305 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4306 strcpy (buf, "C-u ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4307 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4308 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4309 else if (XTYPE (prefixarg) == Lisp_Int)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4310 sprintf (buf, "%d ", XINT (prefixarg));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4311
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4312 /* This isn't strictly correct if execute-extended-command
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4313 is bound to anything else. Perhaps it should use
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4314 this_command_keys? */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4315 strcat (buf, "M-x ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4316
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4317 /* Prompt with buf, and then read a string, completing from and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4318 restricting to the set of all defined commands. Don't provide
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4319 any initial input. The last Qnil says not to perform a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4320 peculiar hack on the initial input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4321 function = Fcompleting_read (build_string (buf),
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4322 Vobarray, Qcommandp,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4323 Qt, Qnil, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4324
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4325 /* Set this_command_keys to the concatenation of saved_keys and
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4326 function, followed by a RET. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4327 {
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4328 struct Lisp_String *str;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4329 int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4330 Lisp_Object tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4331
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4332 this_command_key_count = 0;
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4333
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4334 str = XSTRING (saved_keys);
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4335 for (i = 0; i < str->size; i++)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4336 {
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4337 XFASTINT (tem) = str->data[i];
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4338 add_command_key (tem);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4339 }
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4340
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4341 str = XSTRING (function);
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4342 for (i = 0; i < str->size; i++)
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4343 {
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4344 XFASTINT (tem) = str->data[i];
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4345 add_command_key (tem);
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4346 }
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4347
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4348 XFASTINT (tem) = '\015';
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
4349 add_command_key (tem);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4350 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4351
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4352 UNGCPRO;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4353
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4354 function = Fintern (function, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4355 Vprefix_arg = prefixarg;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4356 this_command = function;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4357
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4358 return Fcommand_execute (function, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4359 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4360
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4361
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4362 detect_input_pending ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4363 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4364 if (!input_pending)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4365 get_input_pending (&input_pending);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4366
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4367 return input_pending;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4368 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4369
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4370 /* This is called in some cases before a possible quit.
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4371 It cases the next call to detect_input_pending to recompute input_pending.
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4372 So calling this function unnecessarily can't do any harm. */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4373 clear_input_pending ()
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4374 {
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4375 input_pending = 0;
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4376 }
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4377
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4378 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4379 "T if command input is currently available with no waiting.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4380 Actually, the value is nil only if we can be sure that no input is available.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4381 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4382 {
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4383 if (!NILP (unread_command_events) || unread_command_char != -1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4384 return (Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4385
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4386 return detect_input_pending () ? Qt : Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4387 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4388
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4389 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
4390 "Return vector of last 100 events, not counting those from keyboard macros.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4391 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4392 {
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
4393 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4394 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4395
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4396 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
4397 return Fvector (total_keys, keys);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4398 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4399 {
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
4400 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
4401 bcopy (keys + recent_keys_index,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4402 XVECTOR (val)->contents,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4403 (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
4404 bcopy (keys,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4405 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4406 recent_keys_index * sizeof (Lisp_Object));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4407 return val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4408 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4409 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4410
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4411 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
4412 "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
4413 The value is a string or a vector.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4414 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4415 {
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4416 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
4417 XVECTOR (this_command_keys)->contents);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4418 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4419
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4420 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4421 "Return the current depth in recursive edits.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4422 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4423 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4424 Lisp_Object temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4425 XFASTINT (temp) = command_loop_level + minibuf_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4426 return temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4427 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4428
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4429 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4430 "FOpen dribble file: ",
1888
86ff3942d7e1 (Fopen_dribble_file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1842
diff changeset
4431 "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
4432 If FILE is nil, close any open dribble file.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4433 (file)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4434 Lisp_Object file;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4435 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4436 if (NILP (file))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4437 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4438 fclose (dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4439 dribble = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4440 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4441 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4442 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4443 file = Fexpand_file_name (file, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4444 dribble = fopen (XSTRING (file)->data, "w");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4445 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4446 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4447 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4448
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4449 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4450 "Discard the contents of the terminal input buffer.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4451 Also cancel any kbd macro being defined.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4452 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4453 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4454 defining_kbd_macro = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4455 update_mode_lines++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4456
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
4457 unread_command_events = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4458 unread_command_char = -1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4459
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4460 discard_tty_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4461
1654
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
4462 /* 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
4463 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
4464 with that? */
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
4465 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4466 Ffillarray (kbd_buffer_frame_or_window, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4467 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4468
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4469 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4470 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4471
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4472 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4473 "Stop Emacs and return to superior process. You can resume later.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4474 On systems that don't have job control, run a subshell instead.\n\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4475 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
4476 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
4477 \n\
2618
2c57852a01ca (Fsuspend_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 2611
diff changeset
4478 Before suspending, call the functions in `suspend-hook' with no args.\n\
1891
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
4479 If any of them returns nil, don't call the rest and don't suspend.\n\
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
4480 Otherwise, suspend normally and after resumption run the normal hook\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4481 `suspend-resume-hook' if that is bound and non-nil.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4482 \n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4483 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
4484 On such systems, Emacs starts a subshell instead of suspending.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4485 (stuffstring)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4486 Lisp_Object stuffstring;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4487 {
1895
b497a7ec0d58 (Fsuspend_emacs): Make tem not register.
Richard M. Stallman <rms@gnu.org>
parents: 1891
diff changeset
4488 Lisp_Object tem;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4489 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4490 int old_height, old_width;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4491 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
4492 struct gcpro gcpro1, gcpro2;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4493 extern init_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4494
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4495 if (!NILP (stuffstring))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4496 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
4497
2338
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
4498 /* Run the functions in suspend-hook. */
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
4499 if (!NILP (Vrun_hooks))
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
4500 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
4501
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4502 GCPRO1 (stuffstring);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
4503 get_frame_size (&old_width, &old_height);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4504 reset_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4505 /* sys_suspend can get an error if it tries to fork a subshell
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4506 and the system resources aren't available for that. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4507 record_unwind_protect (init_sys_modes, 0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4508 stuff_buffered_input (stuffstring);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4509 sys_suspend ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4510 unbind_to (count, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4511
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4512 /* Check if terminal/window size has changed.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4513 Note that this is not useful when we are running directly
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4514 with a window system; but suspend should be disabled in that case. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
4515 get_frame_size (&width, &height);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4516 if (width != old_width || height != old_height)
966
eb74884fc95a * keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents: 939
diff changeset
4517 change_frame_size (0, height, width, 0, 0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4518
2338
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
4519 /* Run suspend-resume-hook. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4520 if (!NILP (Vrun_hooks))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4521 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4522
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4523 UNGCPRO;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4524 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4525 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4526
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4527 /* 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
4528 Then in any case stuff anything Emacs has read ahead and not used. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4529
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4530 stuff_buffered_input (stuffstring)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4531 Lisp_Object stuffstring;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4532 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4533 register unsigned char *p;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4534
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4535 /* stuff_char works only in BSD, versions 4.2 and up. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4536 #ifdef BSD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4537 #ifndef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4538 if (XTYPE (stuffstring) == Lisp_String)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4539 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4540 register int count;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4541
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4542 p = XSTRING (stuffstring)->data;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4543 count = XSTRING (stuffstring)->size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4544 while (count-- > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4545 stuff_char (*p++);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4546 stuff_char ('\n');
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4547 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4548 /* Anything we have read ahead, put back for the shell to read. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4549 while (kbd_fetch_ptr != kbd_store_ptr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4550 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4551 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4552 kbd_fetch_ptr = kbd_buffer;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4553 if (kbd_fetch_ptr->kind == ascii_keystroke)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4554 stuff_char (XINT (kbd_fetch_ptr->code));
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4555 kbd_fetch_ptr->kind = no_event;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4556 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4557 - kbd_buffer]
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4558 = Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4559 kbd_fetch_ptr++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4560 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4561 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4562 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4563 #endif /* BSD and not BSD4_1 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4564 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4565
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4566 set_waiting_for_input (time_to_clear)
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4567 EMACS_TIME *time_to_clear;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4568 {
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4569 input_available_clear_time = time_to_clear;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4570
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4571 /* Tell interrupt_signal to throw back to read_char, */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4572 waiting_for_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4573
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4574 /* If interrupt_signal was called before and buffered a C-g,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4575 make it run again now, to avoid timing error. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4576 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4577 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4578
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4579 /* If alarm has gone off already, echo now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4580 if (echo_flag)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4581 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4582 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4583 echo_flag = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4584 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4585 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4586
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4587 clear_waiting_for_input ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4588 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4589 /* Tell interrupt_signal not to throw back to read_char, */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4590 waiting_for_input = 0;
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4591 input_available_clear_time = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4592 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4593
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4594 /* This routine is called at interrupt level in response to C-G.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4595 If interrupt_input, this is the handler for SIGINT.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4596 Otherwise, it is called from kbd_buffer_store_event,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4597 in handling SIGIO or SIGTINT.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4598
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4599 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4600 immediately throw back to read_char.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4601
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4602 Otherwise it sets the Lisp variable quit-flag not-nil.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4603 This causes eval to throw, when it gets a chance.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4604 If quit-flag is already non-nil, it stops the job right away. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4605
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4606 SIGTYPE
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4607 interrupt_signal ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4608 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4609 char c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4610 /* Must preserve main program's value of errno. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4611 int old_errno = errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4612
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4613 #ifdef USG
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4614 /* USG systems forget handlers when they are used;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4615 must reestablish each time */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4616 signal (SIGINT, interrupt_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4617 signal (SIGQUIT, interrupt_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4618 #endif /* USG */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4619
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4620 cancel_echoing ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4621
966
eb74884fc95a * keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents: 939
diff changeset
4622 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4623 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4624 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4625 reset_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4626 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4627 #ifdef SIGTSTP /* Support possible in later USG versions */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4628 /*
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4629 * On systems which can suspend the current process and return to the original
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4630 * shell, this command causes the user to end up back at the shell.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4631 * The "Auto-save" and "Abort" questions are not asked until
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4632 * the user elects to return to emacs, at which point he can save the current
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4633 * job and either dump core or continue.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4634 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4635 sys_suspend ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4636 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4637 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4638 if (sys_suspend () == -1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4639 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4640 printf ("Not running as a subprocess;\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4641 printf ("you can continue or abort.\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4642 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4643 #else /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4644 /* Perhaps should really fork an inferior shell?
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4645 But that would not provide any way to get back
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4646 to the original shell, ever. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4647 printf ("No support for stopping a process on this operating system;\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4648 printf ("you can continue or abort.\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4649 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4650 #endif /* not SIGTSTP */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4651 printf ("Auto-save? (y or n) ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4652 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4653 if (((c = getchar ()) & ~040) == 'Y')
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4654 Fdo_auto_save (Qnil, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4655 while (c != '\n') c = getchar ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4656 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4657 printf ("Abort (and enter debugger)? (y or n) ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4658 #else /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4659 printf ("Abort (and dump core)? (y or n) ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4660 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4661 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4662 if (((c = getchar ()) & ~040) == 'Y')
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4663 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4664 while (c != '\n') c = getchar ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4665 printf ("Continuing...\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4666 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4667 init_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4668 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4669 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4670 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4671 /* If executing a function that wants to be interrupted out of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4672 and the user has not deferred quitting by binding `inhibit-quit'
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4673 then quit right away. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4674 if (immediate_quit && NILP (Vinhibit_quit))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4675 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4676 immediate_quit = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4677 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4678 Fsignal (Qquit, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4679 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4680 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4681 /* Else request quit when it's safe */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4682 Vquit_flag = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4683 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4684
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4685 if (waiting_for_input && !echoing)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4686 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4687
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4688 errno = old_errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4689 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4690
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4691 /* Handle a C-g by making read_char return C-g. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4692
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4693 quit_throw_to_read_char ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4694 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4695 quit_error_check ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4696 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4697 /* Prevent another signal from doing this before we finish. */
650
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
4698 clear_waiting_for_input ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4699 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4700
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
4701 unread_command_events = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4702 unread_command_char = -1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4703
2340
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
4704 #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
4705 /* 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
4706 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
4707 abort ();
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
4708 #endif
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
4709
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4710 _longjmp (getcjmp, 1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4711 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4712
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4713 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4714 "Set mode of reading keyboard input.\n\
695
e3fac20d3015 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 691
diff changeset
4715 First arg INTERRUPT non-nil means use input interrupts;\n\
e3fac20d3015 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 691
diff changeset
4716 nil means use CBREAK mode.\n\
e3fac20d3015 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 691
diff changeset
4717 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4718 (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
4719 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
4720 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
4721 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
4722 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
4723 See also `current-input-mode'.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4724 (interrupt, flow, meta, quit)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4725 Lisp_Object interrupt, flow, meta, quit;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4726 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4727 if (!NILP (quit)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4728 && (XTYPE (quit) != Lisp_Int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4729 || XINT (quit) < 0 || XINT (quit) > 0400))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4730 error ("set-input-mode: QUIT must be an ASCII character.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4731
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4732 reset_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4733 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4734 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4735 #ifdef NO_SOCK_SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4736 if (read_socket_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4737 interrupt_input = 0; /* No interrupts if reading from a socket. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4738 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4739 #endif /* NO_SOCK_SIGIO */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4740 interrupt_input = !NILP (interrupt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4741 #else /* not SIGIO */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4742 interrupt_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4743 #endif /* not SIGIO */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4744 /* Our VMS input only works by interrupts, as of now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4745 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4746 interrupt_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4747 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4748 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
4749 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
4750 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
4751 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
4752 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
4753 else
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
4754 meta_key = 2;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4755 if (!NILP (quit))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4756 /* Don't let this value be out of range. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4757 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4758
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4759 init_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4760 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4761 }
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4762
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4763 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
4764 "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
4765 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
4766 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
4767 nil, Emacs is using CBREAK mode.\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4768 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
4769 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
4770 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
4771 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
4772 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
4773 all 8 bits as the character code.\n\
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4774 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
4775 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
4776 `set-input-mode'.")
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4777 ()
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4778 {
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4779 Lisp_Object val[4];
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4780
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4781 val[0] = interrupt_input ? Qt : Qnil;
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4782 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
4783 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
3067
38fa0e3705f6 Fix the fix.
Jim Blandy <jimb@redhat.com>
parents: 3058
diff changeset
4784 XFASTINT (val[3]) = quit_char;
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4785
3116
05c3ef28bb6b (Fcurrent_input_mode): Fix the call to Flist.
Richard M. Stallman <rms@gnu.org>
parents: 3104
diff changeset
4786 return Flist (sizeof (val) / sizeof (val[0]), val);
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4787 }
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4788
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4789
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4790 init_keyboard ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4791 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4792 /* This is correct before outermost invocation of the editor loop */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4793 command_loop_level = -1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4794 immediate_quit = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4795 quit_char = Ctl ('g');
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
4796 unread_command_events = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4797 unread_command_char = -1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4798 total_keys = 0;
1262
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
4799 recent_keys_index = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4800 kbd_fetch_ptr = kbd_buffer;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4801 kbd_store_ptr = kbd_buffer;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4802 do_mouse_tracking = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4803 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4804
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
4805 #ifdef MULTI_FRAME
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
4806 /* This means that command_loop_1 won't try to select anything the first
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
4807 time through. */
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
4808 internal_last_event_frame = Qnil;
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
4809 Vlast_event_frame = internal_last_event_frame;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4810 #endif
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4811
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4812 /* If we're running a dumped Emacs, we need to clear out
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4813 kbd_buffer_frame_or_window, in case some events got into it
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4814 before we dumped.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4815
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4816 If we're running an undumped Emacs, it hasn't been initialized by
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4817 syms_of_keyboard yet. */
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4818 if (initialized)
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4819 Ffillarray (kbd_buffer_frame_or_window, Qnil);
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
4820
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4821 if (!noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4822 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4823 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
4824 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4825 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4826 SIGQUIT and we can't tell which one it will give us. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4827 signal (SIGQUIT, interrupt_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4828 #endif /* HAVE_TERMIO */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4829 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4830 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4831 signal (SIGIO, input_available_signal);
1008
f1df63f98e5c * keyboard.c (init_keyboard): Changed "#endif SIGIO" to
Jim Blandy <jimb@redhat.com>
parents: 985
diff changeset
4832 #endif /* SIGIO */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4833 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4834
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4835 /* Use interrupt input by default, if it works and noninterrupt input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4836 has deficiencies. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4837
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4838 #ifdef INTERRUPT_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4839 interrupt_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4840 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4841 interrupt_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4842 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4843
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4844 /* Our VMS input only works by interrupts, as of now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4845 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4846 interrupt_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4847 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4848
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4849 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4850 dribble = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4851
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4852 if (keyboard_init_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4853 (*keyboard_init_hook) ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4854
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4855 #ifdef POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4856 poll_suppress_count = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4857 start_polling ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4858 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4859 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4860
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4861 /* This type's only use is in syms_of_keyboard, to initialize the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4862 event header symbols and put properties on them. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4863 struct event_head {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4864 Lisp_Object *var;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4865 char *name;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4866 Lisp_Object *kind;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4867 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4868
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4869 struct event_head head_table[] = {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4870 &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
4871 &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
4872 &Qswitch_frame, "switch-frame", &Qswitch_frame,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4873 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4874
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4875 syms_of_keyboard ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4876 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4877 Qself_insert_command = intern ("self-insert-command");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4878 staticpro (&Qself_insert_command);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4879
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4880 Qforward_char = intern ("forward-char");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4881 staticpro (&Qforward_char);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4882
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4883 Qbackward_char = intern ("backward-char");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4884 staticpro (&Qbackward_char);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4885
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4886 Qdisabled = intern ("disabled");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4887 staticpro (&Qdisabled);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4888
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4889 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
4890 staticpro (&Qpre_command_hook);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4891
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4892 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
4893 staticpro (&Qpost_command_hook);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4894
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4895 Qfunction_key = intern ("function-key");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4896 staticpro (&Qfunction_key);
1322
5f327f1dddd3 * keyboard.c (modify_event_symbol): Make sure that the unmodified
Jim Blandy <jimb@redhat.com>
parents: 1310
diff changeset
4897 Qmouse_click = intern ("mouse-click");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4898 staticpro (&Qmouse_click);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4899
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
4900 Qmenu_enable = intern ("menu-enable");
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
4901 staticpro (&Qmenu_enable);
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
4902
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4903 Qmode_line = intern ("mode-line");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4904 staticpro (&Qmode_line);
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
4905 Qvertical_line = intern ("vertical-line");
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
4906 staticpro (&Qvertical_line);
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
4907 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
4908 staticpro (&Qvertical_scroll_bar);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4909 Qmenu_bar = intern ("menu-bar");
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4910 staticpro (&Qmenu_bar);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4911
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4912 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
4913 staticpro (&Qabove_handle);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4914 Qhandle = intern ("handle");
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4915 staticpro (&Qhandle);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4916 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
4917 staticpro (&Qbelow_handle);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4918
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
4919 Qevent_kind = intern ("event-kind");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4920 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
4921 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
4922 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
4923 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
4924 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
4925 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
4926 staticpro (&Qmodifier_cache);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4927
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
4928 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
4929 staticpro (&Qrecompute_lucid_menubar);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
4930 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
4931 staticpro (&Qactivate_menubar_hook);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
4932
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4933 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4934 struct event_head *p;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4935
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4936 for (p = head_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4937 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4938 p++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4939 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4940 *p->var = intern (p->name);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4941 staticpro (p->var);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4942 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
4943 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4944 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4945 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4946
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4947 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
4948 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
4949
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4950 {
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4951 int i;
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4952 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
4953
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4954 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
4955 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
4956 if (modifier_names[i])
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4957 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
4958 staticpro (&modifier_symbols);
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4959 }
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4960
1262
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
4961 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
4962 staticpro (&recent_keys);
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
4963
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
4964 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
4965 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
4966
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4967 kbd_buffer_frame_or_window
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4968 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4969 staticpro (&kbd_buffer_frame_or_window);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4970
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4971 func_key_syms = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4972 staticpro (&func_key_syms);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4973
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4974 mouse_syms = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4975 staticpro (&mouse_syms);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4976
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
4977 unread_switch_frame = Qnil;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
4978 staticpro (&unread_switch_frame);
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
4979
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4980 defsubr (&Sread_key_sequence);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4981 defsubr (&Srecursive_edit);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4982 defsubr (&Strack_mouse);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4983 defsubr (&Sinput_pending_p);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4984 defsubr (&Scommand_execute);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4985 defsubr (&Srecent_keys);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4986 defsubr (&Sthis_command_keys);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4987 defsubr (&Ssuspend_emacs);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4988 defsubr (&Sabort_recursive_edit);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4989 defsubr (&Sexit_recursive_edit);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4990 defsubr (&Srecursion_depth);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4991 defsubr (&Stop_level);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4992 defsubr (&Sdiscard_input);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4993 defsubr (&Sopen_dribble_file);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4994 defsubr (&Sset_input_mode);
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
4995 defsubr (&Scurrent_input_mode);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4996 defsubr (&Sexecute_extended_command);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4997
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4998 DEFVAR_LISP ("disabled-command-hook", &Vdisabled_command_hook,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4999 "Value is called instead of any command that is disabled\n\
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5000 \(has a non-nil `disabled' property).");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5001
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5002 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
5003 "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
5004
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5005 DEFVAR_LISP ("last-command-event", &last_command_char,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5006 "Last input event that was part of a command.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5007
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5008 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
5009 "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
5010 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
5011 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
5012 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
5013
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5014 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
5015 "Last input event.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5016
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5017 DEFVAR_LISP ("last-input-event", &last_input_char,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5018 "Last input event.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5019
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
5020 DEFVAR_LISP ("unread-command-events", &unread_command_events,
1960
6051ba81a938 (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1947
diff changeset
5021 "List of objects to be read as next command input events.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5022
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5023 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
5024 "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
5025
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5026 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5027 "Meta-prefix character code. Meta-foo as command input\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5028 turns into this character followed by foo.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5029 XSET (meta_prefix_char, Lisp_Int, 033);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5030
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5031 DEFVAR_LISP ("last-command", &last_command,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5032 "The last command executed. Normally a symbol with a function definition,\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5033 but can be whatever was found in the keymap, or whatever the variable\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5034 `this-command' was set to by that command.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5035 last_command = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5036
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5037 DEFVAR_LISP ("this-command", &this_command,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5038 "The command now being executed.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5039 The command can set this variable; whatever is put here\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5040 will be in `last-command' during the following command.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5041 this_command = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5042
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5043 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5044 "*Number of keyboard input characters between auto-saves.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5045 Zero means disable autosaving due to number of characters typed.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5046 auto_save_interval = 300;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5047
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5048 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5049 "*Number of seconds idle time before auto-save.\n\
687
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 682
diff changeset
5050 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
5051 After auto-saving due to this many seconds of idle time,\n\
701
e7eb08ed73c0 *** empty log message ***
Joseph Arceneaux <jla@gnu.org>
parents: 695
diff changeset
5052 Emacs also does a garbage collection if that seems to be warranted.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5053 XFASTINT (Vauto_save_timeout) = 30;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5054
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5055 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5056 "*Nonzero means echo unfinished commands after this many seconds of pause.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5057 echo_keystrokes = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5058
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5059 DEFVAR_INT ("polling-period", &polling_period,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5060 "*Interval between polling for input during Lisp execution.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5061 The reason for polling is to make C-g work to stop a running program.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5062 Polling is needed only when using X windows and SIGIO does not work.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5063 Polling is automatically disabled in all other cases.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5064 polling_period = 2;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5065
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5066 DEFVAR_INT ("double-click-time", &double_click_time,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5067 "*Maximum time between mouse clicks to make a double-click.\n\
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5068 Measured in milliseconds. Zero means disable double-click recognition;\n\
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5069 a large number means double-clicks have no time limit and are detected\n\
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5070 by position only.");
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5071 double_click_time = 500;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5072
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5073 DEFVAR_INT ("num-input-keys", &num_input_keys,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5074 "*Number of complete keys read from the keyboard so far.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5075 num_input_keys = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5076
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5077 #ifdef MULTI_FRAME
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
5078 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
1239
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
5079 "*The frame in which the most recently read event occurred.\n\
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
5080 If the last event came from a keyboard macro, this is set to `macro'.");
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
5081 Vlast_event_frame = Qnil;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5082 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5083
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5084 DEFVAR_LISP ("help-char", &help_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5085 "Character to recognize as meaning Help.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5086 When it is read, do `(eval help-form)', and display result if it's a string.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5087 If the value of `help-form' is nil, this char can be read normally.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5088 XSET (help_char, Lisp_Int, Ctl ('H'));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5089
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5090 DEFVAR_LISP ("help-form", &Vhelp_form,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5091 "Form to execute when character help-char is read.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5092 If the form returns a string, that string is displayed.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5093 If `help-form' is nil, the help char is not recognized.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5094 Vhelp_form = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5095
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5096 DEFVAR_LISP ("top-level", &Vtop_level,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5097 "Form to evaluate when Emacs starts up.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5098 Useful to set before you dump a modified Emacs.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5099 Vtop_level = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5100
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5101 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5102 "String used as translate table for keyboard input, or nil.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5103 Each character is looked up in this string and the contents used instead.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5104 If string is of length N, character codes N and up are untranslated.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5105 Vkeyboard_translate_table = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5106
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5107 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5108 "Non-nil means prompt with menus when appropriate.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5109 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
5110 for elements that have prompt strings.\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5111 The menu is displayed on the screen\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5112 if X menus were enabled at configuration\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5113 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
5114 Otherwise, menu prompting uses the echo area.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5115 menu_prompting = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5116
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5117 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5118 "Character to see next line of menu prompt.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5119 Type this character while in a menu prompt to rotate around the lines of it.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5120 XSET (menu_prompt_more_char, Lisp_Int, ' ');
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
5121
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
5122 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
5123 "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
5124 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
5125 character it reads. For example, after evaluating the expression\n\
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
5126 (setq extra-keyboard-modifiers ?\C-x)\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
5127 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
5128 \n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
5129 Note that the character ?\C-@, equivalent to the integer zero, does\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
5130 not count as a control character; rather, it counts as a character\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
5131 with no modifiers; thus, setting extra_keyboard_modifiers to zero\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
5132 cancels any modification.");
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
5133 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
5134
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5135 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
5136 "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
5137 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
5138 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
5139 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
5140 Vdeactivate_mark = Qnil;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5141
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5142 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5143 "Normal hook run before each command is executed.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5144 Vpre_command_hook = Qnil;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5145
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5146 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5147 "Normal hook run before each command is executed.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
5148 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
5149
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
5150 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
5151 "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
5152 Vlucid_menu_bar_dirty_flag = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5153 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5154
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5155 keys_of_keyboard ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5156 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5157 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5158 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5159 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5160 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5161 initial_define_key (meta_map, 'x', "execute-extended-command");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5162 }