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