aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-13 11:18:02 +0000
committerEli Zaretskii2008-10-13 11:18:02 +0000
commit9b240644fbcd6132af216807d06e9e9f44f6d9ce (patch)
tree600c6baec3bbac7e0e098a8cf1875c040ffc97a1
parenteaf4b689320489b96c0a3e670d176780e88baa24 (diff)
downloademacs-9b240644fbcd6132af216807d06e9e9f44f6d9ce.tar.gz
emacs-9b240644fbcd6132af216807d06e9e9f44f6d9ce.zip
(What Is a Function): `functionp' returns nil for special forms. Add an xref.
-rw-r--r--doc/lispref/functions.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 3a891db871e..068d05ffc99 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -116,7 +116,9 @@ byte compiler. @xref{Byte-Code Type}.
116 116
117@defun functionp object 117@defun functionp object
118This function returns @code{t} if @var{object} is any kind of 118This function returns @code{t} if @var{object} is any kind of
119function, i.e. can be passed to @code{funcall}. 119function, i.e.@: can be passed to @code{funcall}. Note that
120@code{functionp} returns @code{nil} for special forms (@pxref{Special
121Forms}).
120@end defun 122@end defun
121 123
122Unlike @code{functionp}, the next three functions do @emph{not} 124Unlike @code{functionp}, the next three functions do @emph{not}