aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Naggum1996-01-09 00:30:41 +0000
committerErik Naggum1996-01-09 00:30:41 +0000
commit7868a9779bd9a92de5195563295762d1203a7609 (patch)
treef64b1cd2c2e7262be6ab4e6619f37815447e579c /src
parent1c57922803f125add003cb06dcf691529872d030 (diff)
downloademacs-7868a9779bd9a92de5195563295762d1203a7609.tar.gz
emacs-7868a9779bd9a92de5195563295762d1203a7609.zip
(Fcall_interactively, Fprefix_numeric_value): Harmonize arguments with
documentation.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/callint.c b/src/callint.c
index a509dc4f328..c0699b44fb8 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -175,8 +175,8 @@ See `interactive'.\n\
175Optional second arg RECORD-FLAG non-nil\n\ 175Optional second arg RECORD-FLAG non-nil\n\
176means unconditionally put this command in the command-history.\n\ 176means unconditionally put this command in the command-history.\n\
177Otherwise, this is done only if an arg is read using the minibuffer.") 177Otherwise, this is done only if an arg is read using the minibuffer.")
178 (function, record, keys) 178 (function, record_flag, keys)
179 Lisp_Object function, record, keys; 179 Lisp_Object function, record_flag, keys;
180{ 180{
181 Lisp_Object *args, *visargs; 181 Lisp_Object *args, *visargs;
182 unsigned char **argstrings; 182 unsigned char **argstrings;
@@ -291,7 +291,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
291 input = specs; 291 input = specs;
292 /* Compute the arg values using the user's expression. */ 292 /* Compute the arg values using the user's expression. */
293 specs = Feval (specs); 293 specs = Feval (specs);
294 if (i != num_input_chars || !NILP (record)) 294 if (i != num_input_chars || !NILP (record_flag))
295 { 295 {
296 /* We should record this command on the command history. */ 296 /* We should record this command on the command history. */
297 Lisp_Object values, car; 297 Lisp_Object values, car;
@@ -642,7 +642,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
642 642
643 args[0] = function; 643 args[0] = function;
644 644
645 if (arg_from_tty || !NILP (record)) 645 if (arg_from_tty || !NILP (record_flag))
646 { 646 {
647 visargs[0] = function; 647 visargs[0] = function;
648 for (i = 1; i < count + 1; i++) 648 for (i = 1; i < count + 1; i++)
@@ -676,7 +676,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
676 676
677DEFUN ("prefix-numeric-value", Fprefix_numeric_value, Sprefix_numeric_value, 677DEFUN ("prefix-numeric-value", Fprefix_numeric_value, Sprefix_numeric_value,
678 1, 1, 0, 678 1, 1, 0,
679 "Return numeric meaning of raw prefix argument ARG.\n\ 679 "Return numeric meaning of raw prefix argument RAW.\n\
680A raw prefix argument is what you get from `(interactive \"P\")'.\n\ 680A raw prefix argument is what you get from `(interactive \"P\")'.\n\
681Its numeric meaning is what you would get from `(interactive \"p\")'.") 681Its numeric meaning is what you would get from `(interactive \"p\")'.")
682 (raw) 682 (raw)