Mercurial > emacs
annotate src/callint.c @ 1896:10895ac08bc6
(Fskip_syntax_backward): New function.
(Fskip_syntax_forward): Likewise.
(skip_chars): New argument syntaxp.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 21 Feb 1993 06:03:36 +0000 |
parents | 04fb1d3d6992 |
children | 952f2a18f83d |
rev | line source |
---|---|
407 | 1 /* Call a Lisp function interactively. |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
2 Copyright (C) 1985, 1986, 1992, 1993 Free Software Foundation, Inc. |
407 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
407 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include "config.h" | |
22 #include "lisp.h" | |
23 #include "buffer.h" | |
24 #include "commands.h" | |
516 | 25 #include "keyboard.h" |
407 | 26 #include "window.h" |
27 #include "mocklisp.h" | |
28 | |
29 extern char *index (); | |
30 | |
31 Lisp_Object Vprefix_arg, Vcurrent_prefix_arg, Qminus; | |
32 Lisp_Object Qcall_interactively; | |
33 Lisp_Object Vcommand_history; | |
34 | |
35 Lisp_Object Vcommand_debug_status, Qcommand_debug_status; | |
873 | 36 Lisp_Object Qenable_recursive_minibuffers; |
407 | 37 |
1498
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
38 Lisp_Object Qlist; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
39 Lisp_Object preserved_fns; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
40 |
407 | 41 /* This comment supplies the doc string for interactive, |
42 for make-docfile to see. We cannot put this in the real DEFUN | |
43 due to limits in the Unix cpp. | |
44 | |
45 DEFUN ("interactive", Ffoo, Sfoo, 0, 0, 0, | |
46 "Specify a way of parsing arguments for interactive use of a function.\n\ | |
47 For example, write\n\ | |
48 (defun foo (arg) \"Doc string\" (interactive \"p\") ...use arg...)\n\ | |
49 to make ARG be the prefix argument when `foo' is called as a command.\n\ | |
50 The \"call\" to `interactive' is actually a declaration rather than a function;\n\ | |
51 it tells `call-interactively' how to read arguments\n\ | |
52 to pass to the function.\n\ | |
53 When actually called, `interactive' just returns nil.\n\ | |
54 \n\ | |
55 The argument of `interactive' is usually a string containing a code letter\n\ | |
56 followed by a prompt. (Some code letters do not use I/O to get\n\ | |
57 the argument and do not need prompts.) To prompt for multiple arguments,\n\ | |
58 give a code letter, its prompt, a newline, and another code letter, etc.\n\ | |
59 Prompts are passed to format, and may use % escapes to print the\n\ | |
60 arguments that have already been read.\n\ | |
61 If the argument is not a string, it is evaluated to get a list of\n\ | |
62 arguments to pass to the function.\n\ | |
63 Just `(interactive)' means pass no args when calling interactively.\n\ | |
64 \nCode letters available are:\n\ | |
65 a -- Function name: symbol with a function definition.\n\ | |
66 b -- Name of existing buffer.\n\ | |
67 B -- Name of buffer, possibly nonexistent.\n\ | |
68 c -- Character.\n\ | |
69 C -- Command name: symbol with interactive function definition.\n\ | |
70 d -- Value of point as number. Does not do I/O.\n\ | |
71 D -- Directory name.\n\ | |
1383
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
72 e -- Event that invoked this command (value of `last-nonmenu-event').\n\ |
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
73 This skips events without parameters.\n\ |
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
74 If used more than once, the Nth 'e' returns the Nth parameterized event.\n\ |
407 | 75 f -- Existing file name.\n\ |
76 F -- Possibly nonexistent file name.\n\ | |
77 k -- Key sequence (string).\n\ | |
78 m -- Value of mark as number. Does not do I/O.\n\ | |
79 n -- Number read using minibuffer.\n\ | |
80 N -- Prefix arg converted to number, or if none, do like code `n'.\n\ | |
81 p -- Prefix arg converted to number. Does not do I/O.\n\ | |
82 P -- Prefix arg in raw form. Does not do I/O.\n\ | |
83 r -- Region: point and mark as 2 numeric args, smallest first. Does no I/O.\n\ | |
84 s -- Any string.\n\ | |
85 S -- Any symbol.\n\ | |
86 v -- Variable name: symbol that is user-variable-p.\n\ | |
87 x -- Lisp expression read but not evaluated.\n\ | |
88 X -- Lisp expression read and evaluated.\n\ | |
89 In addition, if the string begins with `*'\n\ | |
90 then an error is signaled if the buffer is read-only.\n\ | |
91 This happens before reading any arguments.\n\ | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
92 If the string begins with `@', then Emacs searches the key sequence\n\ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
93 which invoked the command for its first mouse click (or any other\n\ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
94 event which specifies a window), and selects that window before\n\ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
95 reading any arguments. You may use both `@' and `*'; they are\n\ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
96 processed in the order that they appear." */ |
407 | 97 |
98 /* ARGSUSED */ | |
99 DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, | |
100 0 /* See immediately above */) | |
101 (args) | |
102 Lisp_Object args; | |
103 { | |
104 return Qnil; | |
105 } | |
106 | |
107 /* Quotify EXP: if EXP is constant, return it. | |
108 If EXP is not constant, return (quote EXP). */ | |
109 Lisp_Object | |
110 quotify_arg (exp) | |
111 register Lisp_Object exp; | |
112 { | |
113 if (XTYPE (exp) != Lisp_Int && XTYPE (exp) != Lisp_String | |
485 | 114 && !NILP (exp) && !EQ (exp, Qt)) |
407 | 115 return Fcons (Qquote, Fcons (exp, Qnil)); |
116 | |
117 return exp; | |
118 } | |
119 | |
120 /* Modify EXP by quotifying each element (except the first). */ | |
121 Lisp_Object | |
122 quotify_args (exp) | |
123 Lisp_Object exp; | |
124 { | |
125 register Lisp_Object tail; | |
126 register struct Lisp_Cons *ptr; | |
127 for (tail = exp; CONSP (tail); tail = ptr->cdr) | |
128 { | |
129 ptr = XCONS (tail); | |
130 ptr->car = quotify_arg (ptr->car); | |
131 } | |
132 return exp; | |
133 } | |
134 | |
135 char *callint_argfuns[] | |
136 = {"", "point", "mark", "region-beginning", "region-end"}; | |
137 | |
138 static void | |
139 check_mark () | |
140 { | |
141 Lisp_Object tem = Fmarker_buffer (current_buffer->mark); | |
485 | 142 if (NILP (tem) || (XBUFFER (tem) != current_buffer)) |
407 | 143 error ("The mark is not set now"); |
144 } | |
145 | |
146 | |
147 DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 2, 0, | |
148 "Call FUNCTION, reading args according to its interactive calling specs.\n\ | |
149 The function contains a specification of how to do the argument reading.\n\ | |
150 In the case of user-defined functions, this is specified by placing a call\n\ | |
151 to the function `interactive' at the top level of the function body.\n\ | |
152 See `interactive'.\n\ | |
153 \n\ | |
154 Optional second arg RECORD-FLAG non-nil\n\ | |
155 means unconditionally put this command in the command-history.\n\ | |
156 Otherwise, this is done only if an arg is read using the minibuffer.") | |
157 (function, record) | |
158 Lisp_Object function, record; | |
159 { | |
160 Lisp_Object *args, *visargs; | |
161 unsigned char **argstrings; | |
162 Lisp_Object fun; | |
163 Lisp_Object funcar; | |
164 Lisp_Object specs; | |
165 Lisp_Object teml; | |
873 | 166 Lisp_Object enable; |
167 int speccount = specpdl_ptr - specpdl; | |
407 | 168 |
1383
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
169 /* The index of the next element of this_command_keys to examine for |
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
170 the 'e' interactive code. */ |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
171 int next_event; |
1383
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
172 |
407 | 173 Lisp_Object prefix_arg; |
174 unsigned char *string; | |
175 unsigned char *tem; | |
438 | 176 |
177 /* If varies[i] > 0, the i'th argument shouldn't just have its value | |
178 in this call quoted in the command history. It should be | |
179 recorded as a call to the function named callint_argfuns[varies[i]]. */ | |
407 | 180 int *varies; |
438 | 181 |
407 | 182 register int i, j; |
183 int count, foo; | |
184 char prompt[100]; | |
185 char prompt1[100]; | |
186 char *tem1; | |
187 int arg_from_tty = 0; | |
188 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
189 | |
732 | 190 /* Save this now, since use of minibuffer will clobber it. */ |
407 | 191 prefix_arg = Vcurrent_prefix_arg; |
192 | |
617 | 193 retry: |
407 | 194 |
1115
eb7f1ab33a9d
* callint.c (Fcall_interactively): Remove the 'K' interactive
Jim Blandy <jimb@redhat.com>
parents:
1084
diff
changeset
|
195 if (XTYPE (function) == Lisp_Symbol) |
eb7f1ab33a9d
* callint.c (Fcall_interactively): Remove the 'K' interactive
Jim Blandy <jimb@redhat.com>
parents:
1084
diff
changeset
|
196 enable = Fget (function, Qenable_recursive_minibuffers); |
873 | 197 |
648 | 198 fun = indirect_function (function); |
407 | 199 |
200 specs = Qnil; | |
201 string = 0; | |
202 | |
203 /* Decode the kind of function. Either handle it and return, | |
204 or go to `lose' if not interactive, or go to `retry' | |
205 to specify a different function, or set either STRING or SPECS. */ | |
206 | |
207 if (XTYPE (fun) == Lisp_Subr) | |
208 { | |
209 string = (unsigned char *) XSUBR (fun)->prompt; | |
210 if (!string) | |
211 { | |
212 lose: | |
213 function = wrong_type_argument (Qcommandp, function, 0); | |
214 goto retry; | |
215 } | |
216 if ((int) string == 1) | |
217 /* Let SPECS (which is nil) be used as the args. */ | |
218 string = 0; | |
219 } | |
220 else if (XTYPE (fun) == Lisp_Compiled) | |
221 { | |
222 if (XVECTOR (fun)->size <= COMPILED_INTERACTIVE) | |
223 goto lose; | |
224 specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE]; | |
225 } | |
226 else if (!CONSP (fun)) | |
227 goto lose; | |
228 else if (funcar = Fcar (fun), EQ (funcar, Qautoload)) | |
229 { | |
230 GCPRO2 (function, prefix_arg); | |
231 do_autoload (fun, function); | |
232 UNGCPRO; | |
233 goto retry; | |
234 } | |
235 else if (EQ (funcar, Qlambda)) | |
236 { | |
237 specs = Fassq (Qinteractive, Fcdr (Fcdr (fun))); | |
485 | 238 if (NILP (specs)) |
407 | 239 goto lose; |
240 specs = Fcar (Fcdr (specs)); | |
241 } | |
242 else if (EQ (funcar, Qmocklisp)) | |
243 return ml_apply (fun, Qinteractive); | |
244 else | |
245 goto lose; | |
246 | |
617 | 247 /* If either specs or string is set to a string, use it. */ |
407 | 248 if (XTYPE (specs) == Lisp_String) |
617 | 249 { |
250 /* Make a copy of string so that if a GC relocates specs, | |
251 `string' will still be valid. */ | |
732 | 252 string = (unsigned char *) alloca (XSTRING (specs)->size + 1); |
617 | 253 bcopy (XSTRING (specs)->data, string, XSTRING (specs)->size + 1); |
254 } | |
407 | 255 else if (string == 0) |
256 { | |
1498
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
257 Lisp_Object input; |
407 | 258 i = num_input_chars; |
1498
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
259 input = specs; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
260 /* Compute the arg values using the user's expression. */ |
407 | 261 specs = Feval (specs); |
485 | 262 if (i != num_input_chars || !NILP (record)) |
1498
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
263 { |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
264 /* We should record this command on the command history. */ |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
265 Lisp_Object values, car; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
266 /* Make a copy of the list of values, for the command history, |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
267 and turn them into things we can eval. */ |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
268 values = quotify_args (Fcopy_sequence (specs)); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
269 /* If the list of args was produced with an explicit call to `list', |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
270 look for elements that were computed with (region-beginning) |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
271 or (region-end), and put those expressions into VALUES |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
272 instead of the present values. */ |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
273 car = Fcar (input); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
274 if (EQ (car, Qlist)) |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
275 { |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
276 Lisp_Object intail, valtail; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
277 for (intail = Fcdr (input), valtail = values; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
278 CONSP (valtail); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
279 intail = Fcdr (intail), valtail = Fcdr (valtail)) |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
280 { |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
281 Lisp_Object elt; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
282 elt = Fcar (intail); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
283 if (CONSP (elt)) |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
284 { |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
285 Lisp_Object presflag; |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
286 presflag = Fmemq (Fcar (elt), preserved_fns); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
287 if (!NILP (presflag)) |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
288 Fsetcar (valtail, Fcar (intail)); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
289 } |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
290 } |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
291 } |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
292 Vcommand_history |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
293 = Fcons (Fcons (function, values), Vcommand_history); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
294 } |
407 | 295 return apply1 (function, specs); |
296 } | |
297 | |
298 /* Here if function specifies a string to control parsing the defaults */ | |
299 | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
300 /* Set next_event to point to the first event with parameters. */ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
301 for (next_event = 0; next_event < this_command_key_count; next_event++) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
302 if (EVENT_HAS_PARAMETERS |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
303 (XVECTOR (this_command_keys)->contents[next_event])) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
304 break; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
305 |
407 | 306 /* Handle special starting chars `*' and `@'. */ |
307 while (1) | |
308 { | |
309 if (*string == '*') | |
310 { | |
311 string++; | |
485 | 312 if (!NILP (current_buffer->read_only)) |
407 | 313 Fbarf_if_buffer_read_only (); |
314 } | |
315 else if (*string == '@') | |
316 { | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
317 Lisp_Object event = |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
318 XVECTOR (this_command_keys)->contents[next_event]; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
319 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
320 if (EVENT_HAS_PARAMETERS (event) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
321 && XTYPE (event = XCONS (event)->cdr) == Lisp_Cons |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
322 && XTYPE (event = XCONS (event)->car) == Lisp_Cons |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
323 && XTYPE (event = XCONS (event)->car) == Lisp_Window) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
324 Fselect_window (event); |
407 | 325 string++; |
326 } | |
327 else break; | |
328 } | |
329 | |
330 /* Count the number of arguments the interactive spec would have | |
331 us give to the function. */ | |
332 tem = string; | |
333 for (j = 0; *tem; j++) | |
334 { | |
335 /* 'r' specifications ("point and mark as 2 numeric args") | |
336 produce *two* arguments. */ | |
337 if (*tem == 'r') j++; | |
338 tem = (unsigned char *) index (tem, '\n'); | |
339 if (tem) | |
340 tem++; | |
341 else | |
342 tem = (unsigned char *) ""; | |
343 } | |
344 count = j; | |
345 | |
346 args = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object)); | |
347 visargs = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object)); | |
348 argstrings = (unsigned char **) alloca ((count + 1) * sizeof (char *)); | |
349 varies = (int *) alloca ((count + 1) * sizeof (int)); | |
350 | |
351 for (i = 0; i < (count + 1); i++) | |
352 { | |
353 args[i] = Qnil; | |
354 visargs[i] = Qnil; | |
355 varies[i] = 0; | |
356 } | |
357 | |
358 GCPRO4 (prefix_arg, function, *args, *visargs); | |
359 gcpro3.nvars = (count + 1); | |
360 gcpro4.nvars = (count + 1); | |
361 | |
873 | 362 if (!NILP (enable)) |
363 specbind (Qenable_recursive_minibuffers, Qt); | |
364 | |
407 | 365 tem = string; |
617 | 366 for (i = 1; *tem; i++) |
407 | 367 { |
368 strncpy (prompt1, tem + 1, sizeof prompt1 - 1); | |
369 prompt1[sizeof prompt1 - 1] = 0; | |
370 tem1 = index (prompt1, '\n'); | |
371 if (tem1) *tem1 = 0; | |
372 /* Fill argstrings with a vector of C strings | |
373 corresponding to the Lisp strings in visargs. */ | |
374 for (j = 1; j < i; j++) | |
375 argstrings[j] | |
376 = EQ (visargs[j], Qnil) | |
377 ? (unsigned char *) "" | |
617 | 378 : XSTRING (visargs[j])->data; |
407 | 379 |
380 doprnt (prompt, sizeof prompt, prompt1, 0, j - 1, argstrings + 1); | |
381 | |
382 switch (*tem) | |
383 { | |
384 case 'a': /* Symbol defined as a function */ | |
385 visargs[i] = Fcompleting_read (build_string (prompt), | |
386 Vobarray, Qfboundp, Qt, Qnil, Qnil); | |
387 /* Passing args[i] directly stimulates compiler bug */ | |
388 teml = visargs[i]; | |
389 args[i] = Fintern (teml, Qnil); | |
390 break; | |
391 | |
392 case 'b': /* Name of existing buffer */ | |
393 args[i] = Fcurrent_buffer (); | |
394 if (EQ (selected_window, minibuf_window)) | |
1347
ac3a893b9bb9
(Fcall_interactively): Pass 2nd arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1115
diff
changeset
|
395 args[i] = Fother_buffer (args[i], Qnil); |
407 | 396 args[i] = Fread_buffer (build_string (prompt), args[i], Qt); |
397 break; | |
398 | |
399 case 'B': /* Name of buffer, possibly nonexistent */ | |
400 args[i] = Fread_buffer (build_string (prompt), | |
1347
ac3a893b9bb9
(Fcall_interactively): Pass 2nd arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1115
diff
changeset
|
401 Fother_buffer (Fcurrent_buffer (), Qnil), |
ac3a893b9bb9
(Fcall_interactively): Pass 2nd arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1115
diff
changeset
|
402 Qnil); |
407 | 403 break; |
404 | |
405 case 'c': /* Character */ | |
406 message1 (prompt); | |
407 args[i] = Fread_char (); | |
408 /* Passing args[i] directly stimulates compiler bug */ | |
409 teml = args[i]; | |
410 visargs[i] = Fchar_to_string (teml); | |
411 break; | |
412 | |
413 case 'C': /* Command: symbol with interactive function */ | |
414 visargs[i] = Fcompleting_read (build_string (prompt), | |
415 Vobarray, Qcommandp, Qt, Qnil, Qnil); | |
416 /* Passing args[i] directly stimulates compiler bug */ | |
417 teml = visargs[i]; | |
418 args[i] = Fintern (teml, Qnil); | |
419 break; | |
420 | |
421 case 'd': /* Value of point. Does not do I/O. */ | |
422 XFASTINT (args[i]) = point; | |
423 /* visargs[i] = Qnil; */ | |
424 varies[i] = 1; | |
425 break; | |
426 | |
427 case 'D': /* Directory name. */ | |
428 args[i] = Fread_file_name (build_string (prompt), Qnil, | |
429 current_buffer->directory, Qlambda, Qnil); | |
430 break; | |
431 | |
432 case 'f': /* Existing file name. */ | |
433 args[i] = Fread_file_name (build_string (prompt), | |
434 Qnil, Qnil, Qlambda, Qnil); | |
435 break; | |
436 | |
437 case 'F': /* Possibly nonexistent file name. */ | |
438 args[i] = Fread_file_name (build_string (prompt), | |
439 Qnil, Qnil, Qnil, Qnil); | |
440 break; | |
441 | |
442 case 'k': /* Key sequence (string) */ | |
438 | 443 args[i] = Fread_key_sequence (build_string (prompt), Qnil); |
407 | 444 teml = args[i]; |
445 visargs[i] = Fkey_description (teml); | |
446 break; | |
447 | |
1383
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
448 case 'e': /* The invoking event. */ |
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
449 if (next_event >= this_command_key_count) |
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
450 error ("%s must be bound to an event with parameters", |
438 | 451 (XTYPE (function) == Lisp_Symbol |
452 ? (char *) XSYMBOL (function)->name->data | |
1383
54028d2538a4
* callint.c (Fcall_interactively): Allow multiple 'e' specs.
Jim Blandy <jimb@redhat.com>
parents:
1347
diff
changeset
|
453 : "command")); |
1425
2c156e9908ad
* callint.c (Fcall_interactively): Change handling of 'e' spec;
Jim Blandy <jimb@redhat.com>
parents:
1383
diff
changeset
|
454 args[i] = XVECTOR (this_command_keys)->contents[next_event++]; |
732 | 455 varies[i] = -1; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
456 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
457 /* Find the next parameterized event. */ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
458 while (next_event < this_command_key_count |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
459 && ! (EVENT_HAS_PARAMETERS |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
460 (XVECTOR (this_command_keys)->contents[next_event]))) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
461 next_event++; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1693
diff
changeset
|
462 |
438 | 463 break; |
464 | |
407 | 465 case 'm': /* Value of mark. Does not do I/O. */ |
466 check_mark (); | |
467 /* visargs[i] = Qnil; */ | |
468 XFASTINT (args[i]) = marker_position (current_buffer->mark); | |
469 varies[i] = 2; | |
470 break; | |
471 | |
472 case 'N': /* Prefix arg, else number from minibuffer */ | |
485 | 473 if (!NILP (prefix_arg)) |
407 | 474 goto have_prefix_arg; |
475 case 'n': /* Read number from minibuffer. */ | |
476 do | |
477 args[i] = Fread_minibuffer (build_string (prompt), Qnil); | |
621 | 478 while (! NUMBERP (args[i])); |
407 | 479 visargs[i] = last_minibuf_string; |
480 break; | |
481 | |
482 case 'P': /* Prefix arg in raw form. Does no I/O. */ | |
483 have_prefix_arg: | |
484 args[i] = prefix_arg; | |
485 /* visargs[i] = Qnil; */ | |
486 varies[i] = -1; | |
487 break; | |
488 | |
489 case 'p': /* Prefix arg converted to number. No I/O. */ | |
490 args[i] = Fprefix_numeric_value (prefix_arg); | |
491 /* visargs[i] = Qnil; */ | |
492 varies[i] = -1; | |
493 break; | |
494 | |
495 case 'r': /* Region, point and mark as 2 args. */ | |
496 check_mark (); | |
497 /* visargs[i+1] = Qnil; */ | |
498 foo = marker_position (current_buffer->mark); | |
499 /* visargs[i] = Qnil; */ | |
500 XFASTINT (args[i]) = point < foo ? point : foo; | |
501 varies[i] = 3; | |
502 XFASTINT (args[++i]) = point > foo ? point : foo; | |
503 varies[i] = 4; | |
504 break; | |
505 | |
506 case 's': /* String read via minibuffer. */ | |
507 args[i] = Fread_string (build_string (prompt), Qnil); | |
508 break; | |
509 | |
510 case 'S': /* Any symbol. */ | |
1693
4b2f399dbea2
(Fcall_interactively): For `s', use Fread_string.
Richard M. Stallman <rms@gnu.org>
parents:
1498
diff
changeset
|
511 visargs[i] = Fread_string (build_string (prompt), Qnil); |
407 | 512 /* Passing args[i] directly stimulates compiler bug */ |
513 teml = visargs[i]; | |
514 args[i] = Fintern (teml, Qnil); | |
515 break; | |
516 | |
517 case 'v': /* Variable name: symbol that is | |
518 user-variable-p. */ | |
519 args[i] = Fread_variable (build_string (prompt)); | |
520 visargs[i] = last_minibuf_string; | |
521 break; | |
522 | |
523 case 'x': /* Lisp expression read but not evaluated */ | |
524 args[i] = Fread_minibuffer (build_string (prompt), Qnil); | |
525 visargs[i] = last_minibuf_string; | |
526 break; | |
527 | |
528 case 'X': /* Lisp expression read and evaluated */ | |
529 args[i] = Feval_minibuffer (build_string (prompt), Qnil); | |
530 visargs[i] = last_minibuf_string; | |
531 break; | |
532 | |
533 default: | |
534 error ("Invalid control letter \"%c\" (%03o) in interactive calling string", | |
535 *tem, *tem); | |
536 } | |
537 | |
538 if (varies[i] == 0) | |
539 arg_from_tty = 1; | |
540 | |
485 | 541 if (NILP (visargs[i]) && XTYPE (args[i]) == Lisp_String) |
407 | 542 visargs[i] = args[i]; |
543 | |
544 tem = (unsigned char *) index (tem, '\n'); | |
545 if (tem) tem++; | |
546 else tem = (unsigned char *) ""; | |
547 } | |
873 | 548 unbind_to (speccount, Qnil); |
407 | 549 |
550 QUIT; | |
551 | |
552 args[0] = function; | |
553 | |
485 | 554 if (arg_from_tty || !NILP (record)) |
407 | 555 { |
556 visargs[0] = function; | |
438 | 557 for (i = 1; i < count + 1; i++) |
558 if (varies[i] > 0) | |
407 | 559 visargs[i] = Fcons (intern (callint_argfuns[varies[i]]), Qnil); |
560 else | |
561 visargs[i] = quotify_arg (args[i]); | |
562 Vcommand_history = Fcons (Flist (count + 1, visargs), | |
563 Vcommand_history); | |
564 } | |
565 | |
566 { | |
567 Lisp_Object val; | |
568 specbind (Qcommand_debug_status, Qnil); | |
569 | |
570 val = Ffuncall (count + 1, args); | |
571 UNGCPRO; | |
572 return unbind_to (speccount, val); | |
573 } | |
574 } | |
575 | |
576 DEFUN ("prefix-numeric-value", Fprefix_numeric_value, Sprefix_numeric_value, | |
577 1, 1, 0, | |
578 "Return numeric meaning of raw prefix argument ARG.\n\ | |
579 A raw prefix argument is what you get from `(interactive \"P\")'.\n\ | |
580 Its numeric meaning is what you would get from `(interactive \"p\")'.") | |
581 (raw) | |
582 Lisp_Object raw; | |
583 { | |
584 Lisp_Object val; | |
585 | |
586 /* Tag val as an integer, so the rest of the assignments | |
587 may use XSETINT. */ | |
588 XFASTINT (val) = 0; | |
589 | |
485 | 590 if (NILP (raw)) |
407 | 591 XFASTINT (val) = 1; |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
732
diff
changeset
|
592 else if (EQ (raw, Qminus)) |
407 | 593 XSETINT (val, -1); |
594 else if (CONSP (raw)) | |
595 XSETINT (val, XINT (XCONS (raw)->car)); | |
596 else if (XTYPE (raw) == Lisp_Int) | |
597 val = raw; | |
598 else | |
599 XFASTINT (val) = 1; | |
600 | |
601 return val; | |
602 } | |
603 | |
604 syms_of_callint () | |
605 { | |
1498
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
606 preserved_fns = Fcons (intern ("region-beginning"), |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
607 Fcons (intern ("region-end"), |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
608 Fcons (intern ("point"), |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
609 Fcons (intern ("mark"), Qnil)))); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
610 staticpro (&preserved_fns); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
611 |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
612 Qlist = intern ("list"); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
613 staticpro (&Qlist); |
098464e977d6
(preserved_fns): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1425
diff
changeset
|
614 |
407 | 615 Qminus = intern ("-"); |
616 staticpro (&Qminus); | |
617 | |
618 Qcall_interactively = intern ("call-interactively"); | |
619 staticpro (&Qcall_interactively); | |
620 | |
621 Qcommand_debug_status = intern ("command-debug-status"); | |
622 staticpro (&Qcommand_debug_status); | |
623 | |
873 | 624 Qenable_recursive_minibuffers = intern ("enable-recursive-minibuffers"); |
625 staticpro (&Qenable_recursive_minibuffers); | |
626 | |
407 | 627 DEFVAR_LISP ("prefix-arg", &Vprefix_arg, |
628 "The value of the prefix argument for the next editing command.\n\ | |
629 It may be a number, or the symbol `-' for just a minus sign as arg,\n\ | |
630 or a list whose car is a number for just one or more C-U's\n\ | |
631 or nil if no argument has been specified.\n\ | |
632 \n\ | |
633 You cannot examine this variable to find the argument for this command\n\ | |
634 since it has been set to nil by the time you can look.\n\ | |
635 Instead, you should use the variable `current-prefix-arg', although\n\ | |
636 normally commands can get this prefix argument with (interactive \"P\")."); | |
637 Vprefix_arg = Qnil; | |
638 | |
639 DEFVAR_LISP ("current-prefix-arg", &Vcurrent_prefix_arg, | |
640 "The value of the prefix argument for this editing command.\n\ | |
641 It may be a number, or the symbol `-' for just a minus sign as arg,\n\ | |
642 or a list whose car is a number for just one or more C-U's\n\ | |
643 or nil if no argument has been specified.\n\ | |
644 This is what `(interactive \"P\")' returns."); | |
645 Vcurrent_prefix_arg = Qnil; | |
646 | |
647 DEFVAR_LISP ("command-history", &Vcommand_history, | |
648 "List of recent commands that read arguments from terminal.\n\ | |
649 Each command is represented as a form to evaluate."); | |
650 Vcommand_history = Qnil; | |
651 | |
652 DEFVAR_LISP ("command-debug-status", &Vcommand_debug_status, | |
653 "Debugging status of current interactive command.\n\ | |
654 Bound each time `call-interactively' is called;\n\ | |
655 may be set by the debugger as a reminder for itself."); | |
656 Vcommand_debug_status = Qnil; | |
657 | |
658 defsubr (&Sinteractive); | |
659 defsubr (&Scall_interactively); | |
660 defsubr (&Sprefix_numeric_value); | |
661 } |