diff options
| author | Lars Magne Ingebrigtsen | 2011-07-06 20:34:55 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-06 20:34:55 +0200 |
| commit | 413c488ddbd3e53269502a45465b3ea64606f4d5 (patch) | |
| tree | eb61dc9973cb50e6a153bf8d347018a4475a8419 | |
| parent | d67f7e1fbfa35b715ebda809249f2830eded9fc0 (diff) | |
| download | emacs-413c488ddbd3e53269502a45465b3ea64606f4d5.tar.gz emacs-413c488ddbd3e53269502a45465b3ea64606f4d5.zip | |
* functions.texi (Calling Functions): Link to the "Interactive
Call" node.
Fixes: debbugs:1001
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 0924bbcecc8..23ddf0c5ad1 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * functions.texi (Calling Functions): Link to the "Interactive | ||
| 4 | Call" node (bug#1001). | ||
| 5 | |||
| 1 | 2011-07-06 Chong Yidong <cyd@stupidchicken.com> | 6 | 2011-07-06 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * customize.texi (Composite Types): Move alist and plist to here | 8 | * customize.texi (Composite Types): Move alist and plist to here |
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 519957f8921..f3b2375b61d 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -790,6 +790,12 @@ This function returns @var{arg} and has no side effects. | |||
| 790 | This function ignores any arguments and returns @code{nil}. | 790 | This function ignores any arguments and returns @code{nil}. |
| 791 | @end defun | 791 | @end defun |
| 792 | 792 | ||
| 793 | Emacs Lisp functions can also be user-visible @dfn{commands}. A | ||
| 794 | command is a function that has an @dfn{interactive} specification. | ||
| 795 | You may want to call these functions as if they were called | ||
| 796 | interactively. See @ref{Interactive Call} for details on how to do | ||
| 797 | that. | ||
| 798 | |||
| 793 | @node Mapping Functions | 799 | @node Mapping Functions |
| 794 | @section Mapping Functions | 800 | @section Mapping Functions |
| 795 | @cindex mapping functions | 801 | @cindex mapping functions |