aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-06 20:34:55 +0200
committerLars Magne Ingebrigtsen2011-07-06 20:34:55 +0200
commit413c488ddbd3e53269502a45465b3ea64606f4d5 (patch)
treeeb61dc9973cb50e6a153bf8d347018a4475a8419
parentd67f7e1fbfa35b715ebda809249f2830eded9fc0 (diff)
downloademacs-413c488ddbd3e53269502a45465b3ea64606f4d5.tar.gz
emacs-413c488ddbd3e53269502a45465b3ea64606f4d5.zip
* functions.texi (Calling Functions): Link to the "Interactive
Call" node. Fixes: debbugs:1001
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/functions.texi6
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 @@
12011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * functions.texi (Calling Functions): Link to the "Interactive
4 Call" node (bug#1001).
5
12011-07-06 Chong Yidong <cyd@stupidchicken.com> 62011-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.
790This function ignores any arguments and returns @code{nil}. 790This 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
794command is a function that has an @dfn{interactive} specification.
795You may want to call these functions as if they were called
796interactively. See @ref{Interactive Call} for details on how to do
797that.
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