diff options
| author | Eli Zaretskii | 2005-07-16 11:37:11 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-07-16 11:37:11 +0000 |
| commit | eb383a928510e984a967d35f8d96a4fe4cf55e51 (patch) | |
| tree | fb751b0f4ab5d3c3e12a68fd14954d895edfdd15 | |
| parent | 578f8106451f0099d4eb8749500938b78676a445 (diff) | |
| download | emacs-eb383a928510e984a967d35f8d96a4fe4cf55e51.tar.gz emacs-eb383a928510e984a967d35f8d96a4fe4cf55e51.zip | |
(Type Predicates): Document `atom' type.
| -rw-r--r-- | man/cl.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/man/cl.texi b/man/cl.texi index c150e0d2b4d..16c738d7174 100644 --- a/man/cl.texi +++ b/man/cl.texi | |||
| @@ -736,6 +736,11 @@ Thus @code{(typep @var{object} 'null)} is equivalent to | |||
| 736 | @code{(null @var{object})}. | 736 | @code{(null @var{object})}. |
| 737 | 737 | ||
| 738 | @item | 738 | @item |
| 739 | The type symbol @code{atom} represents all objects that are not cons | ||
| 740 | cells. Thus @code{(typep @var{object} 'atom)} is equivalent to | ||
| 741 | @code{(atom @var{object})}. | ||
| 742 | |||
| 743 | @item | ||
| 739 | The type symbol @code{real} is a synonym for @code{number}, and | 744 | The type symbol @code{real} is a synonym for @code{number}, and |
| 740 | @code{fixnum} is a synonym for @code{integer}. | 745 | @code{fixnum} is a synonym for @code{integer}. |
| 741 | 746 | ||