diff options
| author | Eli Zaretskii | 2008-10-13 11:18:02 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-13 11:18:02 +0000 |
| commit | 9b240644fbcd6132af216807d06e9e9f44f6d9ce (patch) | |
| tree | 600c6baec3bbac7e0e098a8cf1875c040ffc97a1 | |
| parent | eaf4b689320489b96c0a3e670d176780e88baa24 (diff) | |
| download | emacs-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.texi | 4 |
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 |
| 118 | This function returns @code{t} if @var{object} is any kind of | 118 | This function returns @code{t} if @var{object} is any kind of |
| 119 | function, i.e. can be passed to @code{funcall}. | 119 | function, i.e.@: can be passed to @code{funcall}. Note that |
| 120 | @code{functionp} returns @code{nil} for special forms (@pxref{Special | ||
| 121 | Forms}). | ||
| 120 | @end defun | 122 | @end defun |
| 121 | 123 | ||
| 122 | Unlike @code{functionp}, the next three functions do @emph{not} | 124 | Unlike @code{functionp}, the next three functions do @emph{not} |