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