Mercurial > emacs
changeset 38940:848626a721b2
Remove two excess spaces.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 25 Aug 2001 02:01:04 +0000 |
parents | cc4d7a50664e |
children | bf397d008909 |
files | lispref/objects.texi |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/objects.texi Fri Aug 24 11:23:00 2001 +0000 +++ b/lispref/objects.texi Sat Aug 25 02:01:04 2001 +0000 @@ -711,7 +711,7 @@ @code{(@var{a} .@: @var{b})} stands for a cons cell whose @sc{car} is the object @var{a}, and whose @sc{cdr} is the object @var{b}. Dotted pair notation is therefore more general than list syntax. In the dotted -pair notation, the list @samp{(1 2 3)} is written as @samp{(1 . (2 . (3 +pair notation, the list @samp{(1 2 3)} is written as @samp{(1 . (2 . (3 . nil)))}. For @code{nil}-terminated lists, you can use either notation, but list notation is usually clearer and more convenient. When printing a list, the dotted pair notation is only used if the @@ -801,7 +801,7 @@ @example (setq alist-of-colors - '((rose . red) (lily . white) (buttercup . yellow))) + '((rose . red) (lily . white) (buttercup . yellow))) @end example @noindent