407
|
1 /* Call a Lisp function interactively.
|
44405
|
2 Copyright (C) 1985, 86, 93, 94, 95, 1997, 2000, 2002
|
34799
|
3 Free Software Foundation, Inc.
|
407
|
4
|
|
5 This file is part of GNU Emacs.
|
|
6
|
|
7 GNU Emacs is free software; you can redistribute it and/or modify
|
|
8 it under the terms of the GNU General Public License as published by
|
1821
|
9 the Free Software Foundation; either version 2, or (at your option)
|
407
|
10 any later version.
|
|
11
|
|
12 GNU Emacs is distributed in the hope that it will be useful,
|
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 GNU General Public License for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with GNU Emacs; see the file COPYING. If not, write to
|
14186
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
407
|
21
|
|
22
|
4696
|
23 #include <config.h>
|
40103
|
24
|
407
|
25 #include "lisp.h"
|
|
26 #include "buffer.h"
|
|
27 #include "commands.h"
|
516
|
28 #include "keyboard.h"
|
407
|
29 #include "window.h"
|
39697
|
30 #include "keymap.h"
|
407
|
31
|
31336
|
32 #ifdef HAVE_INDEX
|
|
33 extern char *index P_ ((const char *, int));
|
31225
|
34 #endif
|
407
|
35
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
36 extern Lisp_Object Qcursor_in_echo_area;
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
37
|
12117
|
38 Lisp_Object Vcurrent_prefix_arg, Qminus, Qplus;
|
407
|
39 Lisp_Object Qcall_interactively;
|
|
40 Lisp_Object Vcommand_history;
|
|
41
|
21721
|
42 extern Lisp_Object Vhistory_length;
|
|
43
|
407
|
44 Lisp_Object Vcommand_debug_status, Qcommand_debug_status;
|
873
|
45 Lisp_Object Qenable_recursive_minibuffers;
|
407
|
46
|
3975
|
47 /* Non-nil means treat the mark as active
|
|
48 even if mark_active is 0. */
|
|
49 Lisp_Object Vmark_even_if_inactive;
|
|
50
|
10279
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
51 Lisp_Object Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook;
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
52
|
13447
|
53 Lisp_Object Qlist, Qlet, Qletx, Qsave_excursion;
|
10803
|
54 static Lisp_Object preserved_fns;
|
|
55
|
|
56 /* Marker used within call-interactively to refer to point. */
|
|
57 static Lisp_Object point_marker;
|
1498
|
58
|
13142
|
59 /* Buffer for the prompt text used in Fcall_interactively. */
|
|
60 static char *callint_message;
|
|
61
|
|
62 /* Allocated length of that buffer. */
|
|
63 static int callint_message_size;
|
10940
|
64
|
407
|
65 /* ARGSUSED */
|
|
66 DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0,
|
40103
|
67 doc: /* Specify a way of parsing arguments for interactive use of a function.
|
|
68 For example, write
|
|
69 (defun foo (arg) "Doc string" (interactive "p") ...use arg...)
|
|
70 to make ARG be the prefix argument when `foo' is called as a command.
|
|
71 The "call" to `interactive' is actually a declaration rather than a function;
|
|
72 it tells `call-interactively' how to read arguments
|
|
73 to pass to the function.
|
|
74 When actually called, `interactive' just returns nil.
|
|
75
|
|
76 The argument of `interactive' is usually a string containing a code letter
|
|
77 followed by a prompt. (Some code letters do not use I/O to get
|
|
78 the argument and do not need prompts.) To prompt for multiple arguments,
|
|
79 give a code letter, its prompt, a newline, and another code letter, etc.
|
|
80 Prompts are passed to format, and may use % escapes to print the
|
|
81 arguments that have already been read.
|
|
82 If the argument is not a string, it is evaluated to get a list of
|
|
83 arguments to pass to the function.
|
|
84 Just `(interactive)' means pass no args when calling interactively.
|
|
85
|
|
86 Code letters available are:
|
|
87 a -- Function name: symbol with a function definition.
|
|
88 b -- Name of existing buffer.
|
|
89 B -- Name of buffer, possibly nonexistent.
|
|
90 c -- Character (no input method is used).
|
|
91 C -- Command name: symbol with interactive function definition.
|
|
92 d -- Value of point as number. Does not do I/O.
|
|
93 D -- Directory name.
|
|
94 e -- Parametrized event (i.e., one that's a list) that invoked this command.
|
|
95 If used more than once, the Nth `e' returns the Nth parameterized event.
|
|
96 This skips events that are integers or symbols.
|
|
97 f -- Existing file name.
|
|
98 F -- Possibly nonexistent file name.
|
|
99 i -- Ignored, i.e. always nil. Does not do I/O.
|
|
100 k -- Key sequence (downcase the last event if needed to get a definition).
|
|
101 K -- Key sequence to be redefined (do not downcase the last event).
|
|
102 m -- Value of mark as number. Does not do I/O.
|
|
103 M -- Any string. Inherits the current input method.
|
|
104 n -- Number read using minibuffer.
|
|
105 N -- Raw prefix arg, or if none, do like code `n'.
|
|
106 p -- Prefix arg converted to number. Does not do I/O.
|
|
107 P -- Prefix arg in raw form. Does not do I/O.
|
|
108 r -- Region: point and mark as 2 numeric args, smallest first. Does no I/O.
|
|
109 s -- Any string. Does not inherit the current input method.
|
|
110 S -- Any symbol.
|
|
111 v -- Variable name: symbol that is user-variable-p.
|
|
112 x -- Lisp expression read but not evaluated.
|
|
113 X -- Lisp expression read and evaluated.
|
|
114 z -- Coding system.
|
|
115 Z -- Coding system, nil if no prefix arg.
|
|
116 In addition, if the string begins with `*'
|
|
117 then an error is signaled if the buffer is read-only.
|
|
118 This happens before reading any arguments.
|
|
119 If the string begins with `@', then Emacs searches the key sequence
|
|
120 which invoked the command for its first mouse click (or any other
|
|
121 event which specifies a window), and selects that window before
|
|
122 reading any arguments. You may use both `@' and `*'; they are
|
40643
|
123 processed in the order that they appear.
|
|
124 usage: (interactive ARGS) */)
|
40103
|
125 (args)
|
407
|
126 Lisp_Object args;
|
|
127 {
|
|
128 return Qnil;
|
|
129 }
|
|
130
|
|
131 /* Quotify EXP: if EXP is constant, return it.
|
|
132 If EXP is not constant, return (quote EXP). */
|
|
133 Lisp_Object
|
|
134 quotify_arg (exp)
|
|
135 register Lisp_Object exp;
|
|
136 {
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
137 if (!INTEGERP (exp) && !STRINGP (exp)
|
485
|
138 && !NILP (exp) && !EQ (exp, Qt))
|
407
|
139 return Fcons (Qquote, Fcons (exp, Qnil));
|
|
140
|
|
141 return exp;
|
|
142 }
|
|
143
|
|
144 /* Modify EXP by quotifying each element (except the first). */
|
|
145 Lisp_Object
|
|
146 quotify_args (exp)
|
|
147 Lisp_Object exp;
|
|
148 {
|
|
149 register Lisp_Object tail;
|
26164
|
150 Lisp_Object next;
|
|
151 for (tail = exp; CONSP (tail); tail = next)
|
407
|
152 {
|
26164
|
153 next = XCDR (tail);
|
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
diff
changeset
|
154 XSETCAR (tail, quotify_arg (XCAR (tail)));
|
407
|
155 }
|
|
156 return exp;
|
|
157 }
|
|
158
|
|
159 char *callint_argfuns[]
|
|
160 = {"", "point", "mark", "region-beginning", "region-end"};
|
|
161
|
|
162 static void
|
43039
|
163 check_mark (for_region)
|
|
164 int for_region;
|
407
|
165 {
|
6494
|
166 Lisp_Object tem;
|
|
167 tem = Fmarker_buffer (current_buffer->mark);
|
485
|
168 if (NILP (tem) || (XBUFFER (tem) != current_buffer))
|
43039
|
169 error (for_region ? "The mark is not set now, so there is no region"
|
|
170 : "The mark is not set now");
|
4039
77cb08d1c4a5
(check_mark): Don't check mark-active unless in transient-mark-mode.
Roland McGrath <roland@gnu.org>
diff
changeset
|
171 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
|
77cb08d1c4a5
(check_mark): Don't check mark-active unless in transient-mark-mode.
Roland McGrath <roland@gnu.org>
diff
changeset
|
172 && NILP (current_buffer->mark_active))
|
77cb08d1c4a5
(check_mark): Don't check mark-active unless in transient-mark-mode.
Roland McGrath <roland@gnu.org>
diff
changeset
|
173 Fsignal (Qmark_inactive, Qnil);
|
407
|
174 }
|
|
175
|
|
176
|
13308
|
177 DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0,
|
40103
|
178 doc: /* Call FUNCTION, reading args according to its interactive calling specs.
|
|
179 Return the value FUNCTION returns.
|
|
180 The function contains a specification of how to do the argument reading.
|
|
181 In the case of user-defined functions, this is specified by placing a call
|
|
182 to the function `interactive' at the top level of the function body.
|
|
183 See `interactive'.
|
|
184
|
|
185 Optional second arg RECORD-FLAG non-nil
|
|
186 means unconditionally put this command in the command-history.
|
|
187 Otherwise, this is done only if an arg is read using the minibuffer.
|
|
188 Optional third arg KEYS, if given, specifies the sequence of events to
|
|
189 supply if the command inquires which events were used to invoke it. */)
|
|
190 (function, record_flag, keys)
|
14062
16a05061fee3
(Fcall_interactively, Fprefix_numeric_value): Harmonize arguments with
Erik Naggum <erik@naggum.no>
diff
changeset
|
191 Lisp_Object function, record_flag, keys;
|
407
|
192 {
|
|
193 Lisp_Object *args, *visargs;
|
|
194 unsigned char **argstrings;
|
|
195 Lisp_Object fun;
|
|
196 Lisp_Object funcar;
|
|
197 Lisp_Object specs;
|
|
198 Lisp_Object teml;
|
873
|
199 Lisp_Object enable;
|
|
200 int speccount = specpdl_ptr - specpdl;
|
407
|
201
|
1383
|
202 /* The index of the next element of this_command_keys to examine for
|
|
203 the 'e' interactive code. */
|
1821
|
204 int next_event;
|
1383
|
205
|
407
|
206 Lisp_Object prefix_arg;
|
|
207 unsigned char *string;
|
|
208 unsigned char *tem;
|
438
|
209
|
|
210 /* If varies[i] > 0, the i'th argument shouldn't just have its value
|
|
211 in this call quoted in the command history. It should be
|
|
212 recorded as a call to the function named callint_argfuns[varies[i]]. */
|
407
|
213 int *varies;
|
438
|
214
|
407
|
215 register int i, j;
|
|
216 int count, foo;
|
|
217 char prompt1[100];
|
|
218 char *tem1;
|
|
219 int arg_from_tty = 0;
|
|
220 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
13308
|
221 int key_count;
|
|
222
|
|
223 if (NILP (keys))
|
|
224 keys = this_command_keys, key_count = this_command_key_count;
|
|
225 else
|
|
226 {
|
40656
|
227 CHECK_VECTOR (keys);
|
13308
|
228 key_count = XVECTOR (keys)->size;
|
|
229 }
|
407
|
230
|
732
|
231 /* Save this now, since use of minibuffer will clobber it. */
|
10857
2b9faff73319
(Fcall_interactively, syms_of_callint, Vprefix_arg, Vcurrent_prefix_arg): Undo
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
232 prefix_arg = Vcurrent_prefix_arg;
|
407
|
233
|
617
|
234 retry:
|
407
|
235
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
236 if (SYMBOLP (function))
|
1115
|
237 enable = Fget (function, Qenable_recursive_minibuffers);
|
34799
|
238 else
|
|
239 enable = Qnil;
|
873
|
240
|
648
|
241 fun = indirect_function (function);
|
407
|
242
|
|
243 specs = Qnil;
|
|
244 string = 0;
|
|
245
|
|
246 /* Decode the kind of function. Either handle it and return,
|
|
247 or go to `lose' if not interactive, or go to `retry'
|
|
248 to specify a different function, or set either STRING or SPECS. */
|
|
249
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
250 if (SUBRP (fun))
|
407
|
251 {
|
|
252 string = (unsigned char *) XSUBR (fun)->prompt;
|
|
253 if (!string)
|
|
254 {
|
|
255 lose:
|
1926
|
256 function = wrong_type_argument (Qcommandp, function);
|
407
|
257 goto retry;
|
|
258 }
|
|
259 }
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
260 else if (COMPILEDP (fun))
|
407
|
261 {
|
10345
|
262 if ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) <= COMPILED_INTERACTIVE)
|
407
|
263 goto lose;
|
|
264 specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE];
|
|
265 }
|
|
266 else if (!CONSP (fun))
|
|
267 goto lose;
|
39813
638b60fd98d0
(Fcall_interactively): Remove unused code. Use XCAR/XCDR.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
268 else if (funcar = XCAR (fun), EQ (funcar, Qautoload))
|
407
|
269 {
|
|
270 GCPRO2 (function, prefix_arg);
|
|
271 do_autoload (fun, function);
|
|
272 UNGCPRO;
|
|
273 goto retry;
|
|
274 }
|
|
275 else if (EQ (funcar, Qlambda))
|
|
276 {
|
39813
638b60fd98d0
(Fcall_interactively): Remove unused code. Use XCAR/XCDR.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
277 specs = Fassq (Qinteractive, Fcdr (XCDR (fun)));
|
485
|
278 if (NILP (specs))
|
407
|
279 goto lose;
|
|
280 specs = Fcar (Fcdr (specs));
|
|
281 }
|
|
282 else
|
|
283 goto lose;
|
|
284
|
617
|
285 /* If either specs or string is set to a string, use it. */
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
286 if (STRINGP (specs))
|
617
|
287 {
|
|
288 /* Make a copy of string so that if a GC relocates specs,
|
|
289 `string' will still be valid. */
|
21244
|
290 string = (unsigned char *) alloca (STRING_BYTES (XSTRING (specs)) + 1);
|
|
291 bcopy (XSTRING (specs)->data, string,
|
|
292 STRING_BYTES (XSTRING (specs)) + 1);
|
617
|
293 }
|
407
|
294 else if (string == 0)
|
|
295 {
|
1498
|
296 Lisp_Object input;
|
17876
|
297 i = num_input_events;
|
1498
|
298 input = specs;
|
|
299 /* Compute the arg values using the user's expression. */
|
13843
|
300 specs = Feval (specs);
|
17876
|
301 if (i != num_input_events || !NILP (record_flag))
|
1498
|
302 {
|
|
303 /* We should record this command on the command history. */
|
|
304 Lisp_Object values, car;
|
|
305 /* Make a copy of the list of values, for the command history,
|
|
306 and turn them into things we can eval. */
|
|
307 values = quotify_args (Fcopy_sequence (specs));
|
|
308 /* If the list of args was produced with an explicit call to `list',
|
|
309 look for elements that were computed with (region-beginning)
|
|
310 or (region-end), and put those expressions into VALUES
|
|
311 instead of the present values. */
|
13447
|
312 if (CONSP (input))
|
1498
|
313 {
|
25645
|
314 car = XCAR (input);
|
13447
|
315 /* Skip through certain special forms. */
|
|
316 while (EQ (car, Qlet) || EQ (car, Qletx)
|
|
317 || EQ (car, Qsave_excursion))
|
1498
|
318 {
|
25645
|
319 while (CONSP (XCDR (input)))
|
|
320 input = XCDR (input);
|
|
321 input = XCAR (input);
|
13447
|
322 if (!CONSP (input))
|
|
323 break;
|
25645
|
324 car = XCAR (input);
|
13447
|
325 }
|
|
326 if (EQ (car, Qlist))
|
|
327 {
|
|
328 Lisp_Object intail, valtail;
|
|
329 for (intail = Fcdr (input), valtail = values;
|
|
330 CONSP (valtail);
|
|
331 intail = Fcdr (intail), valtail = Fcdr (valtail))
|
1498
|
332 {
|
13447
|
333 Lisp_Object elt;
|
|
334 elt = Fcar (intail);
|
|
335 if (CONSP (elt))
|
|
336 {
|
|
337 Lisp_Object presflag;
|
|
338 presflag = Fmemq (Fcar (elt), preserved_fns);
|
|
339 if (!NILP (presflag))
|
|
340 Fsetcar (valtail, Fcar (intail));
|
|
341 }
|
1498
|
342 }
|
|
343 }
|
|
344 }
|
|
345 Vcommand_history
|
|
346 = Fcons (Fcons (function, values), Vcommand_history);
|
21721
|
347
|
|
348 /* Don't keep command history around forever. */
|
44405
|
349 if (INTEGERP (Vhistory_length) && XINT (Vhistory_length) > 0)
|
21721
|
350 {
|
|
351 teml = Fnthcdr (Vhistory_length, Vcommand_history);
|
|
352 if (CONSP (teml))
|
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
diff
changeset
|
353 XSETCDR (teml, Qnil);
|
21721
|
354 }
|
1498
|
355 }
|
11345
|
356 single_kboard_state ();
|
407
|
357 return apply1 (function, specs);
|
|
358 }
|
|
359
|
|
360 /* Here if function specifies a string to control parsing the defaults */
|
|
361
|
1821
|
362 /* Set next_event to point to the first event with parameters. */
|
13308
|
363 for (next_event = 0; next_event < key_count; next_event++)
|
|
364 if (EVENT_HAS_PARAMETERS (XVECTOR (keys)->contents[next_event]))
|
1821
|
365 break;
|
|
366
|
7912
|
367 /* Handle special starting chars `*' and `@'. Also `-'. */
|
11278
|
368 /* Note that `+' is reserved for user extensions. */
|
407
|
369 while (1)
|
|
370 {
|
11280
|
371 if (*string == '+')
|
11278
|
372 error ("`+' is not used in `interactive' for ordinary commands");
|
|
373 else if (*string == '*')
|
407
|
374 {
|
|
375 string++;
|
485
|
376 if (!NILP (current_buffer->read_only))
|
407
|
377 Fbarf_if_buffer_read_only ();
|
|
378 }
|
7912
|
379 /* Ignore this for semi-compatibility with Lucid. */
|
|
380 else if (*string == '-')
|
|
381 string++;
|
407
|
382 else if (*string == '@')
|
|
383 {
|
6494
|
384 Lisp_Object event;
|
1821
|
385
|
13308
|
386 event = XVECTOR (keys)->contents[next_event];
|
1821
|
387 if (EVENT_HAS_PARAMETERS (event)
|
25645
|
388 && (event = XCDR (event), CONSP (event))
|
|
389 && (event = XCAR (event), CONSP (event))
|
|
390 && (event = XCAR (event), WINDOWP (event)))
|
6270
|
391 {
|
6271
|
392 if (MINI_WINDOW_P (XWINDOW (event))
|
7912
|
393 && ! (minibuf_level > 0 && EQ (event, minibuf_window)))
|
6270
|
394 error ("Attempt to select inactive minibuffer window");
|
10279
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
395
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
396 /* If the current buffer wants to clean up, let it. */
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
397 if (!NILP (Vmouse_leave_buffer_hook))
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
398 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
399
|
6270
|
400 Fselect_window (event);
|
|
401 }
|
407
|
402 string++;
|
|
403 }
|
|
404 else break;
|
|
405 }
|
|
406
|
|
407 /* Count the number of arguments the interactive spec would have
|
|
408 us give to the function. */
|
|
409 tem = string;
|
|
410 for (j = 0; *tem; j++)
|
|
411 {
|
|
412 /* 'r' specifications ("point and mark as 2 numeric args")
|
|
413 produce *two* arguments. */
|
|
414 if (*tem == 'r') j++;
|
|
415 tem = (unsigned char *) index (tem, '\n');
|
|
416 if (tem)
|
|
417 tem++;
|
|
418 else
|
|
419 tem = (unsigned char *) "";
|
|
420 }
|
13843
|
421 count = j;
|
407
|
422
|
|
423 args = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object));
|
|
424 visargs = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object));
|
|
425 argstrings = (unsigned char **) alloca ((count + 1) * sizeof (char *));
|
|
426 varies = (int *) alloca ((count + 1) * sizeof (int));
|
|
427
|
|
428 for (i = 0; i < (count + 1); i++)
|
|
429 {
|
|
430 args[i] = Qnil;
|
|
431 visargs[i] = Qnil;
|
|
432 varies[i] = 0;
|
|
433 }
|
|
434
|
|
435 GCPRO4 (prefix_arg, function, *args, *visargs);
|
|
436 gcpro3.nvars = (count + 1);
|
|
437 gcpro4.nvars = (count + 1);
|
|
438
|
873
|
439 if (!NILP (enable))
|
|
440 specbind (Qenable_recursive_minibuffers, Qt);
|
|
441
|
407
|
442 tem = string;
|
13843
|
443 for (i = 1; *tem; i++)
|
407
|
444 {
|
|
445 strncpy (prompt1, tem + 1, sizeof prompt1 - 1);
|
|
446 prompt1[sizeof prompt1 - 1] = 0;
|
31225
|
447 tem1 = (char *) index (prompt1, '\n');
|
407
|
448 if (tem1) *tem1 = 0;
|
|
449 /* Fill argstrings with a vector of C strings
|
|
450 corresponding to the Lisp strings in visargs. */
|
|
451 for (j = 1; j < i; j++)
|
|
452 argstrings[j]
|
20552
|
453 = (EQ (visargs[j], Qnil)
|
|
454 ? (unsigned char *) ""
|
|
455 : XSTRING (visargs[j])->data);
|
407
|
456
|
13142
|
457 /* Process the format-string in prompt1, putting the output
|
|
458 into callint_message. Make callint_message bigger if necessary.
|
|
459 We don't use a buffer on the stack, because the contents
|
|
460 need to stay stable for a while. */
|
|
461 while (1)
|
|
462 {
|
|
463 int nchars = doprnt (callint_message, callint_message_size,
|
|
464 prompt1, (char *)0,
|
20552
|
465 j - 1, (char **) argstrings + 1);
|
13142
|
466 if (nchars < callint_message_size)
|
|
467 break;
|
|
468 callint_message_size *= 2;
|
|
469 callint_message
|
|
470 = (char *) xrealloc (callint_message, callint_message_size);
|
|
471 }
|
407
|
472
|
|
473 switch (*tem)
|
|
474 {
|
|
475 case 'a': /* Symbol defined as a function */
|
13142
|
476 visargs[i] = Fcompleting_read (build_string (callint_message),
|
17736
|
477 Vobarray, Qfboundp, Qt,
|
19548
|
478 Qnil, Qnil, Qnil, Qnil);
|
407
|
479 /* Passing args[i] directly stimulates compiler bug */
|
|
480 teml = visargs[i];
|
|
481 args[i] = Fintern (teml, Qnil);
|
|
482 break;
|
|
483
|
|
484 case 'b': /* Name of existing buffer */
|
|
485 args[i] = Fcurrent_buffer ();
|
|
486 if (EQ (selected_window, minibuf_window))
|
22244
|
487 args[i] = Fother_buffer (args[i], Qnil, Qnil);
|
13142
|
488 args[i] = Fread_buffer (build_string (callint_message), args[i], Qt);
|
407
|
489 break;
|
|
490
|
|
491 case 'B': /* Name of buffer, possibly nonexistent */
|
13142
|
492 args[i] = Fread_buffer (build_string (callint_message),
|
22244
|
493 Fother_buffer (Fcurrent_buffer (), Qnil, Qnil),
|
1347
|
494 Qnil);
|
407
|
495 break;
|
|
496
|
|
497 case 'c': /* Character */
|
23934
|
498 args[i] = Fread_char (build_string (callint_message), Qnil);
|
13754
|
499 message1_nolog ((char *) 0);
|
407
|
500 /* Passing args[i] directly stimulates compiler bug */
|
|
501 teml = args[i];
|
|
502 visargs[i] = Fchar_to_string (teml);
|
|
503 break;
|
|
504
|
|
505 case 'C': /* Command: symbol with interactive function */
|
13142
|
506 visargs[i] = Fcompleting_read (build_string (callint_message),
|
17736
|
507 Vobarray, Qcommandp,
|
19548
|
508 Qt, Qnil, Qnil, Qnil, Qnil);
|
407
|
509 /* Passing args[i] directly stimulates compiler bug */
|
|
510 teml = visargs[i];
|
|
511 args[i] = Fintern (teml, Qnil);
|
|
512 break;
|
|
513
|
|
514 case 'd': /* Value of point. Does not do I/O. */
|
20552
|
515 set_marker_both (point_marker, Qnil, PT, PT_BYTE);
|
10803
|
516 args[i] = point_marker;
|
407
|
517 /* visargs[i] = Qnil; */
|
|
518 varies[i] = 1;
|
|
519 break;
|
|
520
|
|
521 case 'D': /* Directory name. */
|
13142
|
522 args[i] = Fread_file_name (build_string (callint_message), Qnil,
|
407
|
523 current_buffer->directory, Qlambda, Qnil);
|
|
524 break;
|
|
525
|
|
526 case 'f': /* Existing file name. */
|
13142
|
527 args[i] = Fread_file_name (build_string (callint_message),
|
407
|
528 Qnil, Qnil, Qlambda, Qnil);
|
|
529 break;
|
|
530
|
|
531 case 'F': /* Possibly nonexistent file name. */
|
13142
|
532 args[i] = Fread_file_name (build_string (callint_message),
|
407
|
533 Qnil, Qnil, Qnil, Qnil);
|
|
534 break;
|
|
535
|
17024
|
536 case 'i': /* Ignore an argument -- Does not do I/O */
|
|
537 varies[i] = -1;
|
|
538 break;
|
|
539
|
10540
|
540 case 'k': /* Key sequence. */
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
541 {
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
542 int speccount1 = specpdl_ptr - specpdl;
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
543 specbind (Qcursor_in_echo_area, Qt);
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
544 args[i] = Fread_key_sequence (build_string (callint_message),
|
22932
|
545 Qnil, Qnil, Qnil, Qnil);
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
546 unbind_to (speccount1, Qnil);
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
547 teml = args[i];
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
548 visargs[i] = Fkey_description (teml);
|
22485
|
549
|
|
550 /* If the key sequence ends with a down-event,
|
|
551 discard the following up-event. */
|
|
552 teml = Faref (args[i], make_number (XINT (Flength (args[i])) - 1));
|
|
553 if (CONSP (teml))
|
25645
|
554 teml = XCAR (teml);
|
22485
|
555 if (SYMBOLP (teml))
|
|
556 {
|
|
557 Lisp_Object tem2;
|
|
558
|
|
559 teml = Fget (teml, intern ("event-symbol-elements"));
|
24911
|
560 /* Ignore first element, which is the base key. */
|
|
561 tem2 = Fmemq (intern ("down"), Fcdr (teml));
|
22485
|
562 if (! NILP (tem2))
|
23064
|
563 Fread_event (Qnil, Qnil);
|
22485
|
564 }
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
565 }
|
10540
|
566 break;
|
|
567
|
|
568 case 'K': /* Key sequence to be defined. */
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
569 {
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
570 int speccount1 = specpdl_ptr - specpdl;
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
571 specbind (Qcursor_in_echo_area, Qt);
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
572 args[i] = Fread_key_sequence (build_string (callint_message),
|
22932
|
573 Qnil, Qt, Qnil, Qnil);
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
574 teml = args[i];
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
575 visargs[i] = Fkey_description (teml);
|
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
576 unbind_to (speccount1, Qnil);
|
22485
|
577
|
|
578 /* If the key sequence ends with a down-event,
|
|
579 discard the following up-event. */
|
|
580 teml = Faref (args[i], make_number (XINT (Flength (args[i])) - 1));
|
|
581 if (CONSP (teml))
|
25645
|
582 teml = XCAR (teml);
|
22485
|
583 if (SYMBOLP (teml))
|
|
584 {
|
|
585 Lisp_Object tem2;
|
|
586
|
|
587 teml = Fget (teml, intern ("event-symbol-elements"));
|
24911
|
588 /* Ignore first element, which is the base key. */
|
|
589 tem2 = Fmemq (intern ("down"), Fcdr (teml));
|
22485
|
590 if (! NILP (tem2))
|
23064
|
591 Fread_event (Qnil, Qnil);
|
22485
|
592 }
|
16363
4097c59143f8
(Fcall_interactively): Bind cursor-in-echo-area to t for `k' and `K'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
593 }
|
407
|
594 break;
|
|
595
|
1383
|
596 case 'e': /* The invoking event. */
|
13308
|
597 if (next_event >= key_count)
|
1383
|
598 error ("%s must be bound to an event with parameters",
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
599 (SYMBOLP (function)
|
438
|
600 ? (char *) XSYMBOL (function)->name->data
|
1383
|
601 : "command"));
|
13308
|
602 args[i] = XVECTOR (keys)->contents[next_event++];
|
732
|
603 varies[i] = -1;
|
1821
|
604
|
|
605 /* Find the next parameterized event. */
|
13308
|
606 while (next_event < key_count
|
1821
|
607 && ! (EVENT_HAS_PARAMETERS
|
13308
|
608 (XVECTOR (keys)->contents[next_event])))
|
1821
|
609 next_event++;
|
|
610
|
438
|
611 break;
|
|
612
|
407
|
613 case 'm': /* Value of mark. Does not do I/O. */
|
43039
|
614 check_mark (0);
|
407
|
615 /* visargs[i] = Qnil; */
|
10803
|
616 args[i] = current_buffer->mark;
|
407
|
617 varies[i] = 2;
|
|
618 break;
|
|
619
|
19548
|
620 case 'M': /* String read via minibuffer with
|
|
621 inheriting the current input method. */
|
|
622 args[i] = Fread_string (build_string (callint_message),
|
|
623 Qnil, Qnil, Qnil, Qt);
|
|
624 break;
|
|
625
|
407
|
626 case 'N': /* Prefix arg, else number from minibuffer */
|
485
|
627 if (!NILP (prefix_arg))
|
407
|
628 goto have_prefix_arg;
|
|
629 case 'n': /* Read number from minibuffer. */
|
15961
|
630 {
|
|
631 int first = 1;
|
|
632 do
|
|
633 {
|
|
634 Lisp_Object tem;
|
|
635 if (! first)
|
|
636 {
|
|
637 message ("Please enter a number.");
|
17958
|
638 sit_for (1, 0, 0, 0, 0);
|
15961
|
639 }
|
|
640 first = 0;
|
|
641
|
|
642 tem = Fread_from_minibuffer (build_string (callint_message),
|
19548
|
643 Qnil, Qnil, Qnil, Qnil, Qnil,
|
|
644 Qnil);
|
15961
|
645 if (! STRINGP (tem) || XSTRING (tem)->size == 0)
|
|
646 args[i] = Qnil;
|
|
647 else
|
|
648 args[i] = Fread (tem);
|
|
649 }
|
|
650 while (! NUMBERP (args[i]));
|
|
651 }
|
407
|
652 visargs[i] = last_minibuf_string;
|
|
653 break;
|
|
654
|
|
655 case 'P': /* Prefix arg in raw form. Does no I/O. */
|
|
656 args[i] = prefix_arg;
|
|
657 /* visargs[i] = Qnil; */
|
|
658 varies[i] = -1;
|
|
659 break;
|
|
660
|
|
661 case 'p': /* Prefix arg converted to number. No I/O. */
|
13764
|
662 have_prefix_arg:
|
407
|
663 args[i] = Fprefix_numeric_value (prefix_arg);
|
|
664 /* visargs[i] = Qnil; */
|
|
665 varies[i] = -1;
|
|
666 break;
|
|
667
|
|
668 case 'r': /* Region, point and mark as 2 args. */
|
43039
|
669 check_mark (1);
|
20552
|
670 set_marker_both (point_marker, Qnil, PT, PT_BYTE);
|
407
|
671 /* visargs[i+1] = Qnil; */
|
|
672 foo = marker_position (current_buffer->mark);
|
|
673 /* visargs[i] = Qnil; */
|
16039
|
674 args[i] = PT < foo ? point_marker : current_buffer->mark;
|
407
|
675 varies[i] = 3;
|
16039
|
676 args[++i] = PT > foo ? point_marker : current_buffer->mark;
|
407
|
677 varies[i] = 4;
|
|
678 break;
|
|
679
|
19548
|
680 case 's': /* String read via minibuffer without
|
|
681 inheriting the current input method. */
|
17806
|
682 args[i] = Fread_string (build_string (callint_message),
|
19548
|
683 Qnil, Qnil, Qnil, Qnil);
|
407
|
684 break;
|
|
685
|
|
686 case 'S': /* Any symbol. */
|
13142
|
687 visargs[i] = Fread_string (build_string (callint_message),
|
19548
|
688 Qnil, Qnil, Qnil, Qnil);
|
407
|
689 /* Passing args[i] directly stimulates compiler bug */
|
|
690 teml = visargs[i];
|
|
691 args[i] = Fintern (teml, Qnil);
|
|
692 break;
|
|
693
|
|
694 case 'v': /* Variable name: symbol that is
|
|
695 user-variable-p. */
|
17736
|
696 args[i] = Fread_variable (build_string (callint_message), Qnil);
|
407
|
697 visargs[i] = last_minibuf_string;
|
|
698 break;
|
|
699
|
|
700 case 'x': /* Lisp expression read but not evaluated */
|
13142
|
701 args[i] = Fread_minibuffer (build_string (callint_message), Qnil);
|
407
|
702 visargs[i] = last_minibuf_string;
|
|
703 break;
|
|
704
|
|
705 case 'X': /* Lisp expression read and evaluated */
|
13142
|
706 args[i] = Feval_minibuffer (build_string (callint_message), Qnil);
|
407
|
707 visargs[i] = last_minibuf_string;
|
|
708 break;
|
|
709
|
17024
|
710 case 'Z': /* Coding-system symbol, or ignore the
|
|
711 argument if no prefix */
|
|
712 if (NILP (prefix_arg))
|
|
713 {
|
|
714 args[i] = Qnil;
|
|
715 varies[i] = -1;
|
|
716 }
|
|
717 else
|
|
718 {
|
|
719 args[i]
|
|
720 = Fread_non_nil_coding_system (build_string (callint_message));
|
|
721 visargs[i] = last_minibuf_string;
|
|
722 }
|
|
723 break;
|
|
724
|
|
725 case 'z': /* Coding-system symbol or nil */
|
19759
|
726 args[i] = Fread_coding_system (build_string (callint_message), Qnil);
|
17024
|
727 visargs[i] = last_minibuf_string;
|
|
728 break;
|
|
729
|
11278
|
730 /* We have a case for `+' so we get an error
|
|
731 if anyone tries to define one here. */
|
|
732 case '+':
|
407
|
733 default:
|
11278
|
734 error ("Invalid control letter `%c' (%03o) in interactive calling string",
|
407
|
735 *tem, *tem);
|
|
736 }
|
|
737
|
|
738 if (varies[i] == 0)
|
|
739 arg_from_tty = 1;
|
|
740
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
741 if (NILP (visargs[i]) && STRINGP (args[i]))
|
407
|
742 visargs[i] = args[i];
|
|
743
|
|
744 tem = (unsigned char *) index (tem, '\n');
|
|
745 if (tem) tem++;
|
|
746 else tem = (unsigned char *) "";
|
|
747 }
|
873
|
748 unbind_to (speccount, Qnil);
|
407
|
749
|
|
750 QUIT;
|
|
751
|
|
752 args[0] = function;
|
|
753
|
14062
16a05061fee3
(Fcall_interactively, Fprefix_numeric_value): Harmonize arguments with
Erik Naggum <erik@naggum.no>
diff
changeset
|
754 if (arg_from_tty || !NILP (record_flag))
|
407
|
755 {
|
|
756 visargs[0] = function;
|
438
|
757 for (i = 1; i < count + 1; i++)
|
10803
|
758 {
|
|
759 if (varies[i] > 0)
|
|
760 visargs[i] = Fcons (intern (callint_argfuns[varies[i]]), Qnil);
|
|
761 else
|
|
762 visargs[i] = quotify_arg (args[i]);
|
|
763 }
|
407
|
764 Vcommand_history = Fcons (Flist (count + 1, visargs),
|
|
765 Vcommand_history);
|
21721
|
766 /* Don't keep command history around forever. */
|
44405
|
767 if (INTEGERP (Vhistory_length) && XINT (Vhistory_length) > 0)
|
21721
|
768 {
|
|
769 teml = Fnthcdr (Vhistory_length, Vcommand_history);
|
|
770 if (CONSP (teml))
|
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
diff
changeset
|
771 XSETCDR (teml, Qnil);
|
21721
|
772 }
|
407
|
773 }
|
|
774
|
10803
|
775 /* If we used a marker to hold point, mark, or an end of the region,
|
|
776 temporarily, convert it to an integer now. */
|
10917
|
777 for (i = 1; i <= count; i++)
|
10803
|
778 if (varies[i] >= 1 && varies[i] <= 4)
|
|
779 XSETINT (args[i], marker_position (args[i]));
|
|
780
|
11345
|
781 single_kboard_state ();
|
10819
4768cffd88e5
(Fcall_interactively): If the display hasn't already been locked by reading
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
782
|
407
|
783 {
|
|
784 Lisp_Object val;
|
|
785 specbind (Qcommand_debug_status, Qnil);
|
|
786
|
|
787 val = Ffuncall (count + 1, args);
|
|
788 UNGCPRO;
|
|
789 return unbind_to (speccount, val);
|
|
790 }
|
|
791 }
|
|
792
|
|
793 DEFUN ("prefix-numeric-value", Fprefix_numeric_value, Sprefix_numeric_value,
|
40103
|
794 1, 1, 0,
|
|
795 doc: /* Return numeric meaning of raw prefix argument RAW.
|
|
796 A raw prefix argument is what you get from `(interactive "P")'.
|
|
797 Its numeric meaning is what you would get from `(interactive "p")'. */)
|
|
798 (raw)
|
407
|
799 Lisp_Object raw;
|
|
800 {
|
|
801 Lisp_Object val;
|
|
802
|
485
|
803 if (NILP (raw))
|
9298
6e3aea54fc01
(Fcall_interactively, Fprefix_numeric_value): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
804 XSETFASTINT (val, 1);
|
819
|
805 else if (EQ (raw, Qminus))
|
407
|
806 XSETINT (val, -1);
|
25645
|
807 else if (CONSP (raw) && INTEGERP (XCAR (raw)))
|
|
808 XSETINT (val, XINT (XCAR (raw)));
|
9145
dda75a4dbbfb
(quotify_arg, Fcall_interactively, Fprefix_numeric_value): Use type test
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
809 else if (INTEGERP (raw))
|
407
|
810 val = raw;
|
|
811 else
|
9298
6e3aea54fc01
(Fcall_interactively, Fprefix_numeric_value): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
812 XSETFASTINT (val, 1);
|
407
|
813
|
|
814 return val;
|
|
815 }
|
|
816
|
21514
|
817 void
|
407
|
818 syms_of_callint ()
|
|
819 {
|
10803
|
820 point_marker = Fmake_marker ();
|
|
821 staticpro (&point_marker);
|
|
822
|
1498
|
823 preserved_fns = Fcons (intern ("region-beginning"),
|
|
824 Fcons (intern ("region-end"),
|
|
825 Fcons (intern ("point"),
|
|
826 Fcons (intern ("mark"), Qnil))));
|
|
827 staticpro (&preserved_fns);
|
|
828
|
|
829 Qlist = intern ("list");
|
|
830 staticpro (&Qlist);
|
13447
|
831 Qlet = intern ("let");
|
|
832 staticpro (&Qlet);
|
|
833 Qletx = intern ("let*");
|
|
834 staticpro (&Qletx);
|
|
835 Qsave_excursion = intern ("save-excursion");
|
|
836 staticpro (&Qsave_excursion);
|
1498
|
837
|
407
|
838 Qminus = intern ("-");
|
|
839 staticpro (&Qminus);
|
|
840
|
9100
|
841 Qplus = intern ("+");
|
|
842 staticpro (&Qplus);
|
|
843
|
407
|
844 Qcall_interactively = intern ("call-interactively");
|
|
845 staticpro (&Qcall_interactively);
|
|
846
|
|
847 Qcommand_debug_status = intern ("command-debug-status");
|
|
848 staticpro (&Qcommand_debug_status);
|
|
849
|
873
|
850 Qenable_recursive_minibuffers = intern ("enable-recursive-minibuffers");
|
|
851 staticpro (&Qenable_recursive_minibuffers);
|
|
852
|
10279
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
853 Qmouse_leave_buffer_hook = intern ("mouse-leave-buffer-hook");
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
854 staticpro (&Qmouse_leave_buffer_hook);
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
855
|
13142
|
856 callint_message_size = 100;
|
|
857 callint_message = (char *) xmalloc (callint_message_size);
|
|
858
|
|
859
|
12117
|
860 DEFVAR_KBOARD ("prefix-arg", Vprefix_arg,
|
40103
|
861 doc: /* The value of the prefix argument for the next editing command.
|
|
862 It may be a number, or the symbol `-' for just a minus sign as arg,
|
|
863 or a list whose car is a number for just one or more C-u's
|
|
864 or nil if no argument has been specified.
|
|
865
|
|
866 You cannot examine this variable to find the argument for this command
|
|
867 since it has been set to nil by the time you can look.
|
|
868 Instead, you should use the variable `current-prefix-arg', although
|
|
869 normally commands can get this prefix argument with (interactive "P"). */);
|
10857
2b9faff73319
(Fcall_interactively, syms_of_callint, Vprefix_arg, Vcurrent_prefix_arg): Undo
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
870
|
22383
|
871 DEFVAR_KBOARD ("last-prefix-arg", Vlast_prefix_arg,
|
40103
|
872 doc: /* The value of the prefix argument for the previous editing command.
|
|
873 See `prefix-arg' for the meaning of the value. */);
|
22383
|
874
|
10857
2b9faff73319
(Fcall_interactively, syms_of_callint, Vprefix_arg, Vcurrent_prefix_arg): Undo
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
875 DEFVAR_LISP ("current-prefix-arg", &Vcurrent_prefix_arg,
|
40103
|
876 doc: /* The value of the prefix argument for this editing command.
|
|
877 It may be a number, or the symbol `-' for just a minus sign as arg,
|
|
878 or a list whose car is a number for just one or more C-u's
|
|
879 or nil if no argument has been specified.
|
|
880 This is what `(interactive \"P\")' returns. */);
|
10857
2b9faff73319
(Fcall_interactively, syms_of_callint, Vprefix_arg, Vcurrent_prefix_arg): Undo
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
881 Vcurrent_prefix_arg = Qnil;
|
2b9faff73319
(Fcall_interactively, syms_of_callint, Vprefix_arg, Vcurrent_prefix_arg): Undo
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
882
|
407
|
883 DEFVAR_LISP ("command-history", &Vcommand_history,
|
40103
|
884 doc: /* List of recent commands that read arguments from terminal.
|
|
885 Each command is represented as a form to evaluate. */);
|
407
|
886 Vcommand_history = Qnil;
|
|
887
|
|
888 DEFVAR_LISP ("command-debug-status", &Vcommand_debug_status,
|
40103
|
889 doc: /* Debugging status of current interactive command.
|
|
890 Bound each time `call-interactively' is called;
|
|
891 may be set by the debugger as a reminder for itself. */);
|
407
|
892 Vcommand_debug_status = Qnil;
|
|
893
|
4046
79184227e7f9
(syms_of_callint): Fix DEFVAR_LISP for Vmark_even_if_inactive to use right
Roland McGrath <roland@gnu.org>
diff
changeset
|
894 DEFVAR_LISP ("mark-even-if-inactive", &Vmark_even_if_inactive,
|
40103
|
895 doc: /* *Non-nil means you can use the mark even when inactive.
|
|
896 This option makes a difference in Transient Mark mode.
|
|
897 When the option is non-nil, deactivation of the mark
|
|
898 turns off region highlighting, but commands that use the mark
|
|
899 behave as if the mark were still active. */);
|
3975
|
900 Vmark_even_if_inactive = Qnil;
|
|
901
|
10279
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
902 DEFVAR_LISP ("mouse-leave-buffer-hook", &Vmouse_leave_buffer_hook,
|
40103
|
903 doc: /* Hook to run when about to switch windows with a mouse command.
|
|
904 Its purpose is to give temporary modes such as Isearch mode
|
|
905 a way to turn themselves off when a mouse command switches windows. */);
|
10279
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
906 Vmouse_leave_buffer_hook = Qnil;
|
89cf458ed188
(Vmouse_leave_buffer_hook, Qmouse_leave_buffer_hook): New variables.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
907
|
407
|
908 defsubr (&Sinteractive);
|
|
909 defsubr (&Scall_interactively);
|
|
910 defsubr (&Sprefix_numeric_value);
|
|
911 }
|