# HG changeset patch # User Richard M. Stallman # Date 998704864 0 # Node ID 848626a721b2c0d7e628ecda9f086ffbb946e425 # Parent cc4d7a50664ef51e5cfe91d3caf267da18b101f8 Remove two excess spaces. diff -r cc4d7a50664e -r 848626a721b2 lispref/objects.texi --- 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