]> code.delx.au - gnu-emacs/blob - src/callint.c
* doc/lispref/text.texi (Columns): Remove a nonexistent reference.
[gnu-emacs] / src / callint.c
1 /* Call a Lisp function interactively.
2 Copyright (C) 1985-1986, 1993-1995, 1997, 2000-2016 Free Software
3 Foundation, Inc.
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
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) 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. If not, see <http://www.gnu.org/licenses/>. */
19
20
21 #include <config.h>
22
23 #include "lisp.h"
24 #include "character.h"
25 #include "buffer.h"
26 #include "keyboard.h"
27 #include "window.h"
28
29 static Lisp_Object preserved_fns;
30
31 /* Marker used within call-interactively to refer to point. */
32 static Lisp_Object point_marker;
33
34 /* String for the prompt text used in Fcall_interactively. */
35 static Lisp_Object callint_message;
36 \f
37 /* ARGSUSED */
38 DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0,
39 doc: /* Specify a way of parsing arguments for interactive use of a function.
40 For example, write
41 (defun foo (arg buf) "Doc string" (interactive "P\\nbbuffer: ") .... )
42 to make ARG be the raw prefix argument, and set BUF to an existing buffer,
43 when `foo' is called as a command.
44 The "call" to `interactive' is actually a declaration rather than a function;
45 it tells `call-interactively' how to read arguments
46 to pass to the function.
47 When actually called, `interactive' just returns nil.
48
49 Usually the argument of `interactive' is a string containing a code letter
50 followed optionally by a prompt. (Some code letters do not use I/O to get
51 the argument and do not use prompts.) To get several arguments, concatenate
52 the individual strings, separating them by newline characters.
53 Prompts are passed to format, and may use % escapes to print the
54 arguments that have already been read.
55 If the argument is not a string, it is evaluated to get a list of
56 arguments to pass to the function.
57 Just `(interactive)' means pass no args when calling interactively.
58
59 Code letters available are:
60 a -- Function name: symbol with a function definition.
61 b -- Name of existing buffer.
62 B -- Name of buffer, possibly nonexistent.
63 c -- Character (no input method is used).
64 C -- Command name: symbol with interactive function definition.
65 d -- Value of point as number. Does not do I/O.
66 D -- Directory name.
67 e -- Parameterized event (i.e., one that's a list) that invoked this command.
68 If used more than once, the Nth `e' returns the Nth parameterized event.
69 This skips events that are integers or symbols.
70 f -- Existing file name.
71 F -- Possibly nonexistent file name.
72 G -- Possibly nonexistent file name, defaulting to just directory name.
73 i -- Ignored, i.e. always nil. Does not do I/O.
74 k -- Key sequence (downcase the last event if needed to get a definition).
75 K -- Key sequence to be redefined (do not downcase the last event).
76 m -- Value of mark as number. Does not do I/O.
77 M -- Any string. Inherits the current input method.
78 n -- Number read using minibuffer.
79 N -- Numeric prefix arg, or if none, do like code `n'.
80 p -- Prefix arg converted to number. Does not do I/O.
81 P -- Prefix arg in raw form. Does not do I/O.
82 r -- Region: point and mark as 2 numeric args, smallest first. Does no I/O.
83 s -- Any string. Does not inherit the current input method.
84 S -- Any symbol.
85 U -- Mouse up event discarded by a previous k or K argument.
86 v -- Variable name: symbol that is `custom-variable-p'.
87 x -- Lisp expression read but not evaluated.
88 X -- Lisp expression read and evaluated.
89 z -- Coding system.
90 Z -- Coding system, nil if no prefix arg.
91
92 In addition, if the string begins with `*', an error is signaled if
93 the buffer is read-only.
94 If `@' appears at the beginning of the string, and if the key sequence
95 used to invoke the command includes any mouse events, then the window
96 associated with the first of those events is selected before the
97 command is run.
98 If the string begins with `^' and `shift-select-mode' is non-nil,
99 Emacs first calls the function `handle-shift-selection'.
100 You may use `@', `*', and `^' together. They are processed in the
101 order that they appear, before reading any arguments.
102 usage: (interactive &optional ARGS) */
103 attributes: const)
104 (Lisp_Object args)
105 {
106 return Qnil;
107 }
108
109 /* Quotify EXP: if EXP is constant, return it.
110 If EXP is not constant, return (quote EXP). */
111 static Lisp_Object
112 quotify_arg (register Lisp_Object exp)
113 {
114 if (CONSP (exp)
115 || (SYMBOLP (exp)
116 && !NILP (exp) && !EQ (exp, Qt)))
117 return list2 (Qquote, exp);
118
119 return exp;
120 }
121
122 /* Modify EXP by quotifying each element (except the first). */
123 static Lisp_Object
124 quotify_args (Lisp_Object exp)
125 {
126 register Lisp_Object tail;
127 Lisp_Object next;
128 for (tail = exp; CONSP (tail); tail = next)
129 {
130 next = XCDR (tail);
131 XSETCAR (tail, quotify_arg (XCAR (tail)));
132 }
133 return exp;
134 }
135
136 static const char *callint_argfuns[]
137 = {"", "point", "mark", "region-beginning", "region-end"};
138
139 static void
140 check_mark (bool for_region)
141 {
142 Lisp_Object tem;
143 tem = Fmarker_buffer (BVAR (current_buffer, mark));
144 if (NILP (tem) || (XBUFFER (tem) != current_buffer))
145 error (for_region ? "The mark is not set now, so there is no region"
146 : "The mark is not set now");
147 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
148 && NILP (BVAR (current_buffer, mark_active)))
149 xsignal0 (Qmark_inactive);
150 }
151
152 /* If the list of args INPUT was produced with an explicit call to
153 `list', look for elements that were computed with
154 (region-beginning) or (region-end), and put those expressions into
155 VALUES instead of the present values.
156
157 This function doesn't return a value because it modifies elements
158 of VALUES to do its job. */
159
160 static void
161 fix_command (Lisp_Object input, Lisp_Object values)
162 {
163 /* FIXME: Instead of this ugly hack, we should provide a way for an
164 interactive spec to return an expression/function that will re-build the
165 args without user intervention. */
166 if (CONSP (input))
167 {
168 Lisp_Object car;
169
170 car = XCAR (input);
171 /* Skip through certain special forms. */
172 while (EQ (car, Qlet) || EQ (car, Qletx)
173 || EQ (car, Qsave_excursion)
174 || EQ (car, Qprogn))
175 {
176 while (CONSP (XCDR (input)))
177 input = XCDR (input);
178 input = XCAR (input);
179 if (!CONSP (input))
180 break;
181 car = XCAR (input);
182 }
183 if (EQ (car, Qlist))
184 {
185 Lisp_Object intail, valtail;
186 for (intail = Fcdr (input), valtail = values;
187 CONSP (valtail);
188 intail = Fcdr (intail), valtail = XCDR (valtail))
189 {
190 Lisp_Object elt;
191 elt = Fcar (intail);
192 if (CONSP (elt))
193 {
194 Lisp_Object presflag, carelt;
195 carelt = XCAR (elt);
196 /* If it is (if X Y), look at Y. */
197 if (EQ (carelt, Qif)
198 && EQ (Fnthcdr (make_number (3), elt), Qnil))
199 elt = Fnth (make_number (2), elt);
200 /* If it is (when ... Y), look at Y. */
201 else if (EQ (carelt, Qwhen))
202 {
203 while (CONSP (XCDR (elt)))
204 elt = XCDR (elt);
205 elt = Fcar (elt);
206 }
207
208 /* If the function call we're looking at
209 is a special preserved one, copy the
210 whole expression for this argument. */
211 if (CONSP (elt))
212 {
213 presflag = Fmemq (Fcar (elt), preserved_fns);
214 if (!NILP (presflag))
215 Fsetcar (valtail, Fcar (intail));
216 }
217 }
218 }
219 }
220 }
221 }
222
223 /* Helper function to call `read-file-name' from C. */
224
225 static Lisp_Object
226 read_file_name (Lisp_Object default_filename, Lisp_Object mustmatch,
227 Lisp_Object initial, Lisp_Object predicate)
228 {
229 return CALLN (Ffuncall, intern ("read-file-name"),
230 callint_message, Qnil, default_filename,
231 mustmatch, initial, predicate);
232 }
233
234 /* BEWARE: Calling this directly from C would defeat the purpose! */
235 DEFUN ("funcall-interactively", Ffuncall_interactively, Sfuncall_interactively,
236 1, MANY, 0, doc: /* Like `funcall' but marks the call as interactive.
237 I.e. arrange that within the called function `called-interactively-p' will
238 return non-nil.
239 usage: (funcall-interactively FUNCTION &rest ARGUMENTS) */)
240 (ptrdiff_t nargs, Lisp_Object *args)
241 {
242 ptrdiff_t speccount = SPECPDL_INDEX ();
243 temporarily_switch_to_single_kboard (NULL);
244
245 /* Nothing special to do here, all the work is inside
246 `called-interactively-p'. Which will look for us as a marker in the
247 backtrace. */
248 return unbind_to (speccount, Ffuncall (nargs, args));
249 }
250
251 DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0,
252 doc: /* Call FUNCTION, providing args according to its interactive calling specs.
253 Return the value FUNCTION returns.
254 The function contains a specification of how to do the argument reading.
255 In the case of user-defined functions, this is specified by placing a call
256 to the function `interactive' at the top level of the function body.
257 See `interactive'.
258
259 Optional second arg RECORD-FLAG non-nil
260 means unconditionally put this command in the command-history.
261 Otherwise, this is done only if an arg is read using the minibuffer.
262
263 Optional third arg KEYS, if given, specifies the sequence of events to
264 supply, as a vector, if the command inquires which events were used to
265 invoke it. If KEYS is omitted or nil, the return value of
266 `this-command-keys-vector' is used. */)
267 (Lisp_Object function, Lisp_Object record_flag, Lisp_Object keys)
268 {
269 /* `args' will contain the array of arguments to pass to the function.
270 `visargs' will contain the same list but in a nicer form, so that if we
271 pass it to `Fformat' it will be understandable to a human. */
272 Lisp_Object *args, *visargs;
273 Lisp_Object specs;
274 Lisp_Object filter_specs;
275 Lisp_Object teml;
276 Lisp_Object up_event;
277 Lisp_Object enable;
278 USE_SAFE_ALLOCA;
279 ptrdiff_t speccount = SPECPDL_INDEX ();
280
281 /* The index of the next element of this_command_keys to examine for
282 the 'e' interactive code. */
283 ptrdiff_t next_event;
284
285 Lisp_Object prefix_arg;
286 char *string;
287 const char *tem;
288
289 /* If varies[i] > 0, the i'th argument shouldn't just have its value
290 in this call quoted in the command history. It should be
291 recorded as a call to the function named callint_argfuns[varies[i]]. */
292 signed char *varies;
293
294 ptrdiff_t i, nargs;
295 ptrdiff_t mark;
296 bool arg_from_tty = 0;
297 ptrdiff_t key_count;
298 bool record_then_fail = 0;
299
300 Lisp_Object save_this_command, save_last_command;
301 Lisp_Object save_this_original_command, save_real_this_command;
302
303 save_this_command = Vthis_command;
304 save_this_original_command = Vthis_original_command;
305 save_real_this_command = Vreal_this_command;
306 save_last_command = KVAR (current_kboard, Vlast_command);
307
308 if (NILP (keys))
309 keys = this_command_keys, key_count = this_command_key_count;
310 else
311 {
312 CHECK_VECTOR (keys);
313 key_count = ASIZE (keys);
314 }
315
316 /* Save this now, since use of minibuffer will clobber it. */
317 prefix_arg = Vcurrent_prefix_arg;
318
319 if (SYMBOLP (function))
320 enable = Fget (function, Qenable_recursive_minibuffers);
321 else
322 enable = Qnil;
323
324 specs = Qnil;
325 string = 0;
326 /* The idea of FILTER_SPECS is to provide a way to
327 specify how to represent the arguments in command history.
328 The feature is not fully implemented. */
329 filter_specs = Qnil;
330
331 /* If k or K discard an up-event, save it here so it can be retrieved with
332 U. */
333 up_event = Qnil;
334
335 /* Set SPECS to the interactive form, or barf if not interactive. */
336 {
337 Lisp_Object form;
338 form = Finteractive_form (function);
339 if (CONSP (form))
340 specs = filter_specs = Fcar (XCDR (form));
341 else
342 wrong_type_argument (Qcommandp, function);
343 }
344
345 /* If SPECS is not a string, invent one. */
346 if (! STRINGP (specs))
347 {
348 Lisp_Object input;
349 Lisp_Object funval = Findirect_function (function, Qt);
350 uintmax_t events = num_input_events;
351 input = specs;
352 /* Compute the arg values using the user's expression. */
353 specs = Feval (specs,
354 CONSP (funval) && EQ (Qclosure, XCAR (funval))
355 ? CAR_SAFE (XCDR (funval)) : Qnil);
356 if (events != num_input_events || !NILP (record_flag))
357 {
358 /* We should record this command on the command history. */
359 Lisp_Object values;
360 Lisp_Object this_cmd;
361 /* Make a copy of the list of values, for the command history,
362 and turn them into things we can eval. */
363 values = quotify_args (Fcopy_sequence (specs));
364 fix_command (input, values);
365 this_cmd = Fcons (function, values);
366 if (history_delete_duplicates)
367 Vcommand_history = Fdelete (this_cmd, Vcommand_history);
368 Vcommand_history = Fcons (this_cmd, Vcommand_history);
369
370 /* Don't keep command history around forever. */
371 if (INTEGERP (Vhistory_length) && XINT (Vhistory_length) > 0)
372 {
373 teml = Fnthcdr (Vhistory_length, Vcommand_history);
374 if (CONSP (teml))
375 XSETCDR (teml, Qnil);
376 }
377 }
378
379 Vthis_command = save_this_command;
380 Vthis_original_command = save_this_original_command;
381 Vreal_this_command = save_real_this_command;
382 kset_last_command (current_kboard, save_last_command);
383
384 Lisp_Object result
385 = unbind_to (speccount, CALLN (Fapply, Qfuncall_interactively,
386 function, specs));
387 SAFE_FREE ();
388 return result;
389 }
390
391 /* SPECS is set to a string; use it as an interactive prompt.
392 Copy it so that STRING will be valid even if a GC relocates SPECS. */
393 SAFE_ALLOCA_STRING (string, specs);
394
395 /* Here if function specifies a string to control parsing the defaults. */
396
397 /* Set next_event to point to the first event with parameters. */
398 for (next_event = 0; next_event < key_count; next_event++)
399 if (EVENT_HAS_PARAMETERS (AREF (keys, next_event)))
400 break;
401
402 /* Handle special starting chars `*' and `@'. Also `-'. */
403 /* Note that `+' is reserved for user extensions. */
404 while (1)
405 {
406 if (*string == '+')
407 error ("`+' is not used in `interactive' for ordinary commands");
408 else if (*string == '*')
409 {
410 string++;
411 if (!NILP (BVAR (current_buffer, read_only)))
412 {
413 if (!NILP (record_flag))
414 {
415 char *p = string;
416 while (*p)
417 {
418 if (! (*p == 'r' || *p == 'p' || *p == 'P'
419 || *p == '\n'))
420 Fbarf_if_buffer_read_only (Qnil);
421 p++;
422 }
423 record_then_fail = 1;
424 }
425 else
426 Fbarf_if_buffer_read_only (Qnil);
427 }
428 }
429 /* Ignore this for semi-compatibility with Lucid. */
430 else if (*string == '-')
431 string++;
432 else if (*string == '@')
433 {
434 Lisp_Object event, w;
435
436 event = (next_event < key_count
437 ? AREF (keys, next_event)
438 : Qnil);
439 if (EVENT_HAS_PARAMETERS (event)
440 && (w = XCDR (event), CONSP (w))
441 && (w = XCAR (w), CONSP (w))
442 && (w = XCAR (w), WINDOWP (w)))
443 {
444 if (MINI_WINDOW_P (XWINDOW (w))
445 && ! (minibuf_level > 0 && EQ (w, minibuf_window)))
446 error ("Attempt to select inactive minibuffer window");
447
448 /* If the current buffer wants to clean up, let it. */
449 run_hook (Qmouse_leave_buffer_hook);
450
451 Fselect_window (w, Qnil);
452 }
453 string++;
454 }
455 else if (*string == '^')
456 {
457 call0 (Qhandle_shift_selection);
458 string++;
459 }
460 else break;
461 }
462
463 /* Count the number of arguments, which is two (the function itself and
464 `funcall-interactively') plus the number of arguments the interactive spec
465 would have us give to the function. */
466 tem = string;
467 for (nargs = 2; *tem; )
468 {
469 /* 'r' specifications ("point and mark as 2 numeric args")
470 produce *two* arguments. */
471 if (*tem == 'r')
472 nargs += 2;
473 else
474 nargs++;
475 tem = strchr (tem, '\n');
476 if (tem)
477 ++tem;
478 else
479 break;
480 }
481
482 if (MOST_POSITIVE_FIXNUM < min (PTRDIFF_MAX, SIZE_MAX) / word_size
483 && MOST_POSITIVE_FIXNUM < nargs)
484 memory_full (SIZE_MAX);
485
486 /* Allocate them all at one go. This wastes a bit of memory, but
487 it's OK to trade space for speed. */
488 SAFE_NALLOCA (args, 3, nargs);
489 visargs = args + nargs;
490 varies = (signed char *) (visargs + nargs);
491
492 memclear (args, nargs * (2 * word_size + 1));
493
494 if (!NILP (enable))
495 specbind (Qenable_recursive_minibuffers, Qt);
496
497 tem = string;
498 for (i = 2; *tem; i++)
499 {
500 visargs[1] = make_string (tem + 1, strcspn (tem + 1, "\n"));
501 if (strchr (SSDATA (visargs[1]), '%'))
502 callint_message = Fformat_message (i - 1, visargs + 1);
503 else
504 callint_message = visargs[1];
505
506 switch (*tem)
507 {
508 case 'a': /* Symbol defined as a function. */
509 visargs[i] = Fcompleting_read (callint_message,
510 Vobarray, Qfboundp, Qt,
511 Qnil, Qnil, Qnil, Qnil);
512 /* Passing args[i] directly stimulates compiler bug. */
513 teml = visargs[i];
514 args[i] = Fintern (teml, Qnil);
515 break;
516
517 case 'b': /* Name of existing buffer. */
518 args[i] = Fcurrent_buffer ();
519 if (EQ (selected_window, minibuf_window))
520 args[i] = Fother_buffer (args[i], Qnil, Qnil);
521 args[i] = Fread_buffer (callint_message, args[i], Qt, Qnil);
522 break;
523
524 case 'B': /* Name of buffer, possibly nonexistent. */
525 args[i] = Fread_buffer (callint_message,
526 Fother_buffer (Fcurrent_buffer (), Qnil, Qnil),
527 Qnil, Qnil);
528 break;
529
530 case 'c': /* Character. */
531 /* Prompt in `minibuffer-prompt' face. */
532 Fput_text_property (make_number (0),
533 make_number (SCHARS (callint_message)),
534 Qface, Qminibuffer_prompt, callint_message);
535 args[i] = Fread_char (callint_message, Qnil, Qnil);
536 message1_nolog (0);
537 /* Passing args[i] directly stimulates compiler bug. */
538 teml = args[i];
539 /* See bug#8479. */
540 if (! CHARACTERP (teml)) error ("Non-character input-event");
541 visargs[i] = Fchar_to_string (teml);
542 break;
543
544 case 'C': /* Command: symbol with interactive function. */
545 visargs[i] = Fcompleting_read (callint_message,
546 Vobarray, Qcommandp,
547 Qt, Qnil, Qnil, Qnil, Qnil);
548 /* Passing args[i] directly stimulates compiler bug. */
549 teml = visargs[i];
550 args[i] = Fintern (teml, Qnil);
551 break;
552
553 case 'd': /* Value of point. Does not do I/O. */
554 set_marker_both (point_marker, Qnil, PT, PT_BYTE);
555 args[i] = point_marker;
556 /* visargs[i] = Qnil; */
557 varies[i] = 1;
558 break;
559
560 case 'D': /* Directory name. */
561 args[i] = read_file_name (BVAR (current_buffer, directory), Qlambda, Qnil,
562 Qfile_directory_p);
563 break;
564
565 case 'f': /* Existing file name. */
566 args[i] = read_file_name (Qnil, Qlambda, Qnil, Qnil);
567 break;
568
569 case 'F': /* Possibly nonexistent file name. */
570 args[i] = read_file_name (Qnil, Qnil, Qnil, Qnil);
571 break;
572
573 case 'G': /* Possibly nonexistent file name,
574 default to directory alone. */
575 args[i] = read_file_name (Qnil, Qnil, empty_unibyte_string, Qnil);
576 break;
577
578 case 'i': /* Ignore an argument -- Does not do I/O. */
579 varies[i] = -1;
580 break;
581
582 case 'k': /* Key sequence. */
583 {
584 ptrdiff_t speccount1 = SPECPDL_INDEX ();
585 specbind (Qcursor_in_echo_area, Qt);
586 /* Prompt in `minibuffer-prompt' face. */
587 Fput_text_property (make_number (0),
588 make_number (SCHARS (callint_message)),
589 Qface, Qminibuffer_prompt, callint_message);
590 args[i] = Fread_key_sequence (callint_message,
591 Qnil, Qnil, Qnil, Qnil);
592 unbind_to (speccount1, Qnil);
593 teml = args[i];
594 visargs[i] = Fkey_description (teml, Qnil);
595
596 /* If the key sequence ends with a down-event,
597 discard the following up-event. */
598 teml = Faref (args[i], make_number (XINT (Flength (args[i])) - 1));
599 if (CONSP (teml))
600 teml = XCAR (teml);
601 if (SYMBOLP (teml))
602 {
603 Lisp_Object tem2;
604
605 teml = Fget (teml, Qevent_symbol_elements);
606 /* Ignore first element, which is the base key. */
607 tem2 = Fmemq (Qdown, Fcdr (teml));
608 if (! NILP (tem2))
609 up_event = Fread_event (Qnil, Qnil, Qnil);
610 }
611 }
612 break;
613
614 case 'K': /* Key sequence to be defined. */
615 {
616 ptrdiff_t speccount1 = SPECPDL_INDEX ();
617 specbind (Qcursor_in_echo_area, Qt);
618 /* Prompt in `minibuffer-prompt' face. */
619 Fput_text_property (make_number (0),
620 make_number (SCHARS (callint_message)),
621 Qface, Qminibuffer_prompt, callint_message);
622 args[i] = Fread_key_sequence_vector (callint_message,
623 Qnil, Qt, Qnil, Qnil);
624 teml = args[i];
625 visargs[i] = Fkey_description (teml, Qnil);
626 unbind_to (speccount1, Qnil);
627
628 /* If the key sequence ends with a down-event,
629 discard the following up-event. */
630 teml = Faref (args[i], make_number (XINT (Flength (args[i])) - 1));
631 if (CONSP (teml))
632 teml = XCAR (teml);
633 if (SYMBOLP (teml))
634 {
635 Lisp_Object tem2;
636
637 teml = Fget (teml, Qevent_symbol_elements);
638 /* Ignore first element, which is the base key. */
639 tem2 = Fmemq (Qdown, Fcdr (teml));
640 if (! NILP (tem2))
641 up_event = Fread_event (Qnil, Qnil, Qnil);
642 }
643 }
644 break;
645
646 case 'U': /* Up event from last k or K. */
647 if (!NILP (up_event))
648 {
649 args[i] = Fmake_vector (make_number (1), up_event);
650 up_event = Qnil;
651 teml = args[i];
652 visargs[i] = Fkey_description (teml, Qnil);
653 }
654 break;
655
656 case 'e': /* The invoking event. */
657 if (next_event >= key_count)
658 error ("%s must be bound to an event with parameters",
659 (SYMBOLP (function)
660 ? SSDATA (SYMBOL_NAME (function))
661 : "command"));
662 args[i] = AREF (keys, next_event);
663 next_event++;
664 varies[i] = -1;
665
666 /* Find the next parameterized event. */
667 while (next_event < key_count
668 && !(EVENT_HAS_PARAMETERS (AREF (keys, next_event))))
669 next_event++;
670
671 break;
672
673 case 'm': /* Value of mark. Does not do I/O. */
674 check_mark (0);
675 /* visargs[i] = Qnil; */
676 args[i] = BVAR (current_buffer, mark);
677 varies[i] = 2;
678 break;
679
680 case 'M': /* String read via minibuffer with
681 inheriting the current input method. */
682 args[i] = Fread_string (callint_message,
683 Qnil, Qnil, Qnil, Qt);
684 break;
685
686 case 'N': /* Prefix arg as number, else number from minibuffer. */
687 if (!NILP (prefix_arg))
688 goto have_prefix_arg;
689 case 'n': /* Read number from minibuffer. */
690 args[i] = call1 (Qread_number, callint_message);
691 /* Passing args[i] directly stimulates compiler bug. */
692 teml = args[i];
693 visargs[i] = Fnumber_to_string (teml);
694 break;
695
696 case 'P': /* Prefix arg in raw form. Does no I/O. */
697 args[i] = prefix_arg;
698 /* visargs[i] = Qnil; */
699 varies[i] = -1;
700 break;
701
702 case 'p': /* Prefix arg converted to number. No I/O. */
703 have_prefix_arg:
704 args[i] = Fprefix_numeric_value (prefix_arg);
705 /* visargs[i] = Qnil; */
706 varies[i] = -1;
707 break;
708
709 case 'r': /* Region, point and mark as 2 args. */
710 check_mark (1);
711 set_marker_both (point_marker, Qnil, PT, PT_BYTE);
712 /* visargs[i+1] = Qnil; */
713 mark = marker_position (BVAR (current_buffer, mark));
714 /* visargs[i] = Qnil; */
715 args[i] = PT < mark ? point_marker : BVAR (current_buffer, mark);
716 varies[i] = 3;
717 args[++i] = PT > mark ? point_marker : BVAR (current_buffer, mark);
718 varies[i] = 4;
719 break;
720
721 case 's': /* String read via minibuffer without
722 inheriting the current input method. */
723 args[i] = Fread_string (callint_message,
724 Qnil, Qnil, Qnil, Qnil);
725 break;
726
727 case 'S': /* Any symbol. */
728 visargs[i] = Fread_string (callint_message,
729 Qnil, Qnil, Qnil, Qnil);
730 /* Passing args[i] directly stimulates compiler bug. */
731 teml = visargs[i];
732 args[i] = Fintern (teml, Qnil);
733 break;
734
735 case 'v': /* Variable name: symbol that is
736 custom-variable-p. */
737 args[i] = Fread_variable (callint_message, Qnil);
738 visargs[i] = last_minibuf_string;
739 break;
740
741 case 'x': /* Lisp expression read but not evaluated. */
742 args[i] = call1 (intern ("read-minibuffer"), callint_message);
743 visargs[i] = last_minibuf_string;
744 break;
745
746 case 'X': /* Lisp expression read and evaluated. */
747 args[i] = call1 (intern ("eval-minibuffer"), callint_message);
748 visargs[i] = last_minibuf_string;
749 break;
750
751 case 'Z': /* Coding-system symbol, or ignore the
752 argument if no prefix. */
753 if (NILP (prefix_arg))
754 {
755 /* args[i] = Qnil; */
756 varies[i] = -1;
757 }
758 else
759 {
760 args[i]
761 = Fread_non_nil_coding_system (callint_message);
762 visargs[i] = last_minibuf_string;
763 }
764 break;
765
766 case 'z': /* Coding-system symbol or nil. */
767 args[i] = Fread_coding_system (callint_message, Qnil);
768 visargs[i] = last_minibuf_string;
769 break;
770
771 /* We have a case for `+' so we get an error
772 if anyone tries to define one here. */
773 case '+':
774 default:
775 error ("Invalid control letter `%c' (#o%03o, #x%04x) in interactive calling string",
776 STRING_CHAR ((unsigned char *) tem),
777 (unsigned) STRING_CHAR ((unsigned char *) tem),
778 (unsigned) STRING_CHAR ((unsigned char *) tem));
779 }
780
781 if (varies[i] == 0)
782 arg_from_tty = 1;
783
784 if (NILP (visargs[i]) && STRINGP (args[i]))
785 visargs[i] = args[i];
786
787 tem = strchr (tem, '\n');
788 if (tem) tem++;
789 else tem = "";
790 }
791 unbind_to (speccount, Qnil);
792
793 QUIT;
794
795 args[0] = Qfuncall_interactively;
796 args[1] = function;
797
798 if (arg_from_tty || !NILP (record_flag))
799 {
800 /* We don't need `visargs' any more, so let's recycle it since we need
801 an array of just the same size. */
802 visargs[1] = function;
803 for (i = 2; i < nargs; i++)
804 {
805 if (varies[i] > 0)
806 visargs[i] = list1 (intern (callint_argfuns[varies[i]]));
807 else
808 visargs[i] = quotify_arg (args[i]);
809 }
810 Vcommand_history = Fcons (Flist (nargs - 1, visargs + 1),
811 Vcommand_history);
812 /* Don't keep command history around forever. */
813 if (INTEGERP (Vhistory_length) && XINT (Vhistory_length) > 0)
814 {
815 teml = Fnthcdr (Vhistory_length, Vcommand_history);
816 if (CONSP (teml))
817 XSETCDR (teml, Qnil);
818 }
819 }
820
821 /* If we used a marker to hold point, mark, or an end of the region,
822 temporarily, convert it to an integer now. */
823 for (i = 2; i < nargs; i++)
824 if (varies[i] >= 1 && varies[i] <= 4)
825 XSETINT (args[i], marker_position (args[i]));
826
827 if (record_then_fail)
828 Fbarf_if_buffer_read_only (Qnil);
829
830 Vthis_command = save_this_command;
831 Vthis_original_command = save_this_original_command;
832 Vreal_this_command = save_real_this_command;
833 kset_last_command (current_kboard, save_last_command);
834
835 {
836 Lisp_Object val = Ffuncall (nargs, args);
837 val = unbind_to (speccount, val);
838 SAFE_FREE ();
839 return val;
840 }
841 }
842
843 DEFUN ("prefix-numeric-value", Fprefix_numeric_value, Sprefix_numeric_value,
844 1, 1, 0,
845 doc: /* Return numeric meaning of raw prefix argument RAW.
846 A raw prefix argument is what you get from `(interactive "P")'.
847 Its numeric meaning is what you would get from `(interactive "p")'. */)
848 (Lisp_Object raw)
849 {
850 Lisp_Object val;
851
852 if (NILP (raw))
853 XSETFASTINT (val, 1);
854 else if (EQ (raw, Qminus))
855 XSETINT (val, -1);
856 else if (CONSP (raw) && INTEGERP (XCAR (raw)))
857 XSETINT (val, XINT (XCAR (raw)));
858 else if (INTEGERP (raw))
859 val = raw;
860 else
861 XSETFASTINT (val, 1);
862
863 return val;
864 }
865
866 void
867 syms_of_callint (void)
868 {
869 point_marker = Fmake_marker ();
870 staticpro (&point_marker);
871
872 callint_message = Qnil;
873 staticpro (&callint_message);
874
875 preserved_fns = listn (CONSTYPE_PURE, 4,
876 intern_c_string ("region-beginning"),
877 intern_c_string ("region-end"),
878 intern_c_string ("point"),
879 intern_c_string ("mark"));
880
881 DEFSYM (Qlist, "list");
882 DEFSYM (Qlet, "let");
883 DEFSYM (Qif, "if");
884 DEFSYM (Qwhen, "when");
885 DEFSYM (Qletx, "let*");
886 DEFSYM (Qsave_excursion, "save-excursion");
887 DEFSYM (Qprogn, "progn");
888 DEFSYM (Qminus, "-");
889 DEFSYM (Qplus, "+");
890 DEFSYM (Qhandle_shift_selection, "handle-shift-selection");
891 DEFSYM (Qread_number, "read-number");
892 DEFSYM (Qfuncall_interactively, "funcall-interactively");
893 DEFSYM (Qenable_recursive_minibuffers, "enable-recursive-minibuffers");
894 DEFSYM (Qmouse_leave_buffer_hook, "mouse-leave-buffer-hook");
895
896 DEFVAR_KBOARD ("prefix-arg", Vprefix_arg,
897 doc: /* The value of the prefix argument for the next editing command.
898 It may be a number, or the symbol `-' for just a minus sign as arg,
899 or a list whose car is a number for just one or more C-u's
900 or nil if no argument has been specified.
901
902 You cannot examine this variable to find the argument for this command
903 since it has been set to nil by the time you can look.
904 Instead, you should use the variable `current-prefix-arg', although
905 normally commands can get this prefix argument with (interactive "P"). */);
906
907 DEFVAR_KBOARD ("last-prefix-arg", Vlast_prefix_arg,
908 doc: /* The value of the prefix argument for the previous editing command.
909 See `prefix-arg' for the meaning of the value. */);
910
911 DEFVAR_LISP ("current-prefix-arg", Vcurrent_prefix_arg,
912 doc: /* The value of the prefix argument for this editing command.
913 It may be a number, or the symbol `-' for just a minus sign as arg,
914 or a list whose car is a number for just one or more C-u's
915 or nil if no argument has been specified.
916 This is what `(interactive \"P\")' returns. */);
917 Vcurrent_prefix_arg = Qnil;
918
919 DEFVAR_LISP ("command-history", Vcommand_history,
920 doc: /* List of recent commands that read arguments from terminal.
921 Each command is represented as a form to evaluate.
922
923 Maximum length of the history list is determined by the value
924 of `history-length', which see. */);
925 Vcommand_history = Qnil;
926
927 DEFVAR_LISP ("command-debug-status", Vcommand_debug_status,
928 doc: /* Debugging status of current interactive command.
929 Bound each time `call-interactively' is called;
930 may be set by the debugger as a reminder for itself. */);
931 Vcommand_debug_status = Qnil;
932
933 DEFVAR_LISP ("mark-even-if-inactive", Vmark_even_if_inactive,
934 doc: /* Non-nil means you can use the mark even when inactive.
935 This option makes a difference in Transient Mark mode.
936 When the option is non-nil, deactivation of the mark
937 turns off region highlighting, but commands that use the mark
938 behave as if the mark were still active. */);
939 Vmark_even_if_inactive = Qt;
940
941 DEFVAR_LISP ("mouse-leave-buffer-hook", Vmouse_leave_buffer_hook,
942 doc: /* Hook to run when about to switch windows with a mouse command.
943 Its purpose is to give temporary modes such as Isearch mode
944 a way to turn themselves off when a mouse command switches windows. */);
945 Vmouse_leave_buffer_hook = Qnil;
946
947 defsubr (&Sinteractive);
948 defsubr (&Scall_interactively);
949 defsubr (&Sfuncall_interactively);
950 defsubr (&Sprefix_numeric_value);
951 }