aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2006-12-26 03:54:08 +0000
committerRichard M. Stallman2006-12-26 03:54:08 +0000
commit425b457e870826a003f01921754c4c2fe14778bc (patch)
tree8afc9386339375e2877087b7e1cc4a72f56406b6 /src
parent3b2452fd1ab156e0aa6259ed79c5abe8266233a8 (diff)
downloademacs-425b457e870826a003f01921754c4c2fe14778bc.tar.gz
emacs-425b457e870826a003f01921754c4c2fe14778bc.zip
(Finteractive): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/callint.c b/src/callint.c
index b65ef144d5d..68cfdfc7aa6 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -60,7 +60,7 @@ static Lisp_Object point_marker;
60 60
61/* String for the prompt text used in Fcall_interactively. */ 61/* String for the prompt text used in Fcall_interactively. */
62static Lisp_Object callint_message; 62static Lisp_Object callint_message;
63 63
64/* ARGSUSED */ 64/* ARGSUSED */
65DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, 65DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0,
66 doc: /* Specify a way of parsing arguments for interactive use of a function. 66 doc: /* Specify a way of parsing arguments for interactive use of a function.
@@ -102,7 +102,7 @@ K -- Key sequence to be redefined (do not downcase the last event).
102m -- Value of mark as number. Does not do I/O. 102m -- Value of mark as number. Does not do I/O.
103M -- Any string. Inherits the current input method. 103M -- Any string. Inherits the current input method.
104n -- Number read using minibuffer. 104n -- Number read using minibuffer.
105N -- Raw prefix arg, or if none, do like code `n'. 105N -- Numeric prefix arg, or if none, do like code `n'.
106p -- Prefix arg converted to number. Does not do I/O. 106p -- Prefix arg converted to number. Does not do I/O.
107P -- Prefix arg in raw form. Does not do I/O. 107P -- Prefix arg in raw form. Does not do I/O.
108r -- Region: point and mark as 2 numeric args, smallest first. Does no I/O. 108r -- Region: point and mark as 2 numeric args, smallest first. Does no I/O.
@@ -688,7 +688,7 @@ invoke it. If KEYS is omitted or nil, the return value of
688 Qnil, Qnil, Qnil, Qt); 688 Qnil, Qnil, Qnil, Qt);
689 break; 689 break;
690 690
691 case 'N': /* Prefix arg, else number from minibuffer */ 691 case 'N': /* Prefix arg as number, else number from minibuffer */
692 if (!NILP (prefix_arg)) 692 if (!NILP (prefix_arg))
693 goto have_prefix_arg; 693 goto have_prefix_arg;
694 case 'n': /* Read number from minibuffer. */ 694 case 'n': /* Read number from minibuffer. */