From: Eli Zaretskii Date: Sat, 16 Jul 2005 11:37:11 +0000 (+0000) Subject: (Type Predicates): Document `atom' type. X-Git-Tag: emacs-pretest-22.0.90~8111 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eb383a928510e984a967d35f8d96a4fe4cf55e51;p=emacs.git (Type Predicates): Document `atom' type. --- diff --git a/man/cl.texi b/man/cl.texi index c150e0d2b4d..16c738d7174 100644 --- a/man/cl.texi +++ b/man/cl.texi @@ -735,6 +735,11 @@ The type symbol @code{null} represents the symbol @code{nil}. Thus @code{(typep @var{object} 'null)} is equivalent to @code{(null @var{object})}. +@item +The type symbol @code{atom} represents all objects that are not cons +cells. Thus @code{(typep @var{object} 'atom)} is equivalent to +@code{(atom @var{object})}. + @item The type symbol @code{real} is a synonym for @code{number}, and @code{fixnum} is a synonym for @code{integer}.