comparison doc/lispref/functions.texi @ 98685:48cabcb73380

(What Is a Function): `functionp' returns nil for special forms. Add an xref.
author Eli Zaretskii <eliz@gnu.org>
date Mon, 13 Oct 2008 11:18:02 +0000
parents 310118b32104
children f577e03e6ee0
comparison
equal deleted inserted replaced
98684:0cd084657709 98685:48cabcb73380
114 byte compiler. @xref{Byte-Code Type}. 114 byte compiler. @xref{Byte-Code Type}.
115 @end table 115 @end table
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}
123 treat a symbol as its function definition. 125 treat a symbol as its function definition.
124 126