diff options
| author | Eli Zaretskii | 2016-01-16 16:54:35 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-01-16 16:54:35 +0200 |
| commit | 964ba0f5261b2de1c5979cef8727cd1663b4438b (patch) | |
| tree | 5c71acc5a95b2782e3ab595f255378a2c6629e9a /doc/lispref/functions.texi | |
| parent | 2460cfac091c6a5b095816bef9e639f9da88f432 (diff) | |
| download | emacs-964ba0f5261b2de1c5979cef8727cd1663b4438b.tar.gz emacs-964ba0f5261b2de1c5979cef8727cd1663b4438b.zip | |
Document 'funcall-interactively'
* doc/lispref/commands.texi (Interactive Call): Document
'funcall-interactively'.
* doc/lispref/functions.texi (Calling Functions): Mention
'funcall-interactively' and provide a cross-reference.
Diffstat (limited to 'doc/lispref/functions.texi')
| -rw-r--r-- | doc/lispref/functions.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index d3d0a422574..1e8e7540395 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -754,6 +754,10 @@ they make sense only when given the unevaluated argument | |||
| 754 | expressions. @code{funcall} cannot provide these because, as we saw | 754 | expressions. @code{funcall} cannot provide these because, as we saw |
| 755 | above, it never knows them in the first place. | 755 | above, it never knows them in the first place. |
| 756 | 756 | ||
| 757 | If you need to use @code{funcall} to call a command and make it behave | ||
| 758 | as if invoked interactively, use @code{funcall-interactively} | ||
| 759 | (@pxref{Interactive Call}). | ||
| 760 | |||
| 757 | @example | 761 | @example |
| 758 | @group | 762 | @group |
| 759 | (setq f 'list) | 763 | (setq f 'list) |