diff options
| author | Lars Magne Ingebrigtsen | 2011-07-07 18:59:26 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-07 18:59:26 +0200 |
| commit | 54e101844312f87d5283db5fd078d0756264caa2 (patch) | |
| tree | 0f0fc3253456a7834742ec13f71f27c216d05993 /src | |
| parent | ac6531adfffc5bc6729a9f481ce4bc60800c4d68 (diff) | |
| download | emacs-54e101844312f87d5283db5fd078d0756264caa2.tar.gz emacs-54e101844312f87d5283db5fd078d0756264caa2.zip | |
Clarify the `call-interactively' doc string, and add an example.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/callint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9186061530e..8c1af2a27ce 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * callint.c (Fcall_interactively): Change "reading args" to | ||
| 4 | "providing args" to try to clarify what it does (bug#1010). | ||
| 5 | |||
| 1 | 2011-07-07 Kenichi Handa <handa@m17n.org> | 6 | 2011-07-07 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * composite.c (composition_compute_stop_pos): Ignore a static | 8 | * composite.c (composition_compute_stop_pos): Ignore a static |
diff --git a/src/callint.c b/src/callint.c index 1371b403e4b..26b161a25b3 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -234,7 +234,7 @@ fix_command (Lisp_Object input, Lisp_Object values) | |||
| 234 | } | 234 | } |
| 235 | 235 | ||
| 236 | DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0, | 236 | DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0, |
| 237 | doc: /* Call FUNCTION, reading args according to its interactive calling specs. | 237 | doc: /* Call FUNCTION, providing args according to its interactive calling specs. |
| 238 | Return the value FUNCTION returns. | 238 | Return the value FUNCTION returns. |
| 239 | The function contains a specification of how to do the argument reading. | 239 | The function contains a specification of how to do the argument reading. |
| 240 | In the case of user-defined functions, this is specified by placing a call | 240 | In the case of user-defined functions, this is specified by placing a call |