diff options
| author | Richard M. Stallman | 2006-12-26 03:54:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-12-26 03:54:08 +0000 |
| commit | 425b457e870826a003f01921754c4c2fe14778bc (patch) | |
| tree | 8afc9386339375e2877087b7e1cc4a72f56406b6 /src | |
| parent | 3b2452fd1ab156e0aa6259ed79c5abe8266233a8 (diff) | |
| download | emacs-425b457e870826a003f01921754c4c2fe14778bc.tar.gz emacs-425b457e870826a003f01921754c4c2fe14778bc.zip | |
(Finteractive): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 6 |
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. */ |
| 62 | static Lisp_Object callint_message; | 62 | static Lisp_Object callint_message; |
| 63 | 63 | ||
| 64 | /* ARGSUSED */ | 64 | /* ARGSUSED */ |
| 65 | DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, | 65 | DEFUN ("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). | |||
| 102 | m -- Value of mark as number. Does not do I/O. | 102 | m -- Value of mark as number. Does not do I/O. |
| 103 | M -- Any string. Inherits the current input method. | 103 | M -- Any string. Inherits the current input method. |
| 104 | n -- Number read using minibuffer. | 104 | n -- Number read using minibuffer. |
| 105 | N -- Raw prefix arg, or if none, do like code `n'. | 105 | N -- Numeric prefix arg, or if none, do like code `n'. |
| 106 | p -- Prefix arg converted to number. Does not do I/O. | 106 | p -- Prefix arg converted to number. Does not do I/O. |
| 107 | P -- Prefix arg in raw form. Does not do I/O. | 107 | P -- Prefix arg in raw form. Does not do I/O. |
| 108 | r -- Region: point and mark as 2 numeric args, smallest first. Does no I/O. | 108 | r -- 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. */ |