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