]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove two excess spaces.
authorRichard M. Stallman <rms@gnu.org>
Sat, 25 Aug 2001 02:01:04 +0000 (02:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 25 Aug 2001 02:01:04 +0000 (02:01 +0000)
lispref/objects.texi

index daa7a8000ea575aefdaf701e88226a8b6bc81a28..c82242206fbaf7ac91e4ebf3ec33c63876ad255a 100644 (file)
@@ -711,7 +711,7 @@ that represents the @sc{car} and @sc{cdr} explicitly.  In this syntax,
 @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 @@ the list.
 
 @example
 (setq alist-of-colors
-      '((rose . red) (lily . white)  (buttercup . yellow)))
+      '((rose . red) (lily . white) (buttercup . yellow)))
 @end example
 
 @noindent