diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-05 20:22:22 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-05 20:22:22 +0000 |
commit | fc944cd4c504178b0e79f0e443650b07ba38fd6d (patch) | |
tree | 7fbd8d918b1ed5168bdbc8bd9cd1c74cdf8a9c5f /doc | |
parent | 0e96e25f477dd68d9cc1e734b85e0123984f30e9 (diff) | |
download | emacs-fc944cd4c504178b0e79f0e443650b07ba38fd6d.tar.gz |
(functionp): Return nil for special forms.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lispref/functions.texi | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 40a3d3ec38b..3a891db871e 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -116,9 +116,7 @@ byte compiler. @xref{Byte-Code Type}. @defun functionp object This function returns @code{t} if @var{object} is any kind of -function, or a special form, or, recursively, a symbol whose function -definition is a function or special form. (This does not include -macros.) +function, i.e. can be passed to @code{funcall}. @end defun Unlike @code{functionp}, the next three functions do @emph{not} |