summaryrefslogtreecommitdiff
path: root/lispref/objects.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2001-08-25 02:01:04 +0000
committerRichard M. Stallman <rms@gnu.org>2001-08-25 02:01:04 +0000
commit92e732c4b68e408c532c18c806c4fa56c20f61c8 (patch)
tree3d7b882333c3f8648160fd2ba1e1005cb2d319ed /lispref/objects.texi
parent777fcecfe241807e5f1f44847f345cfe1854b53d (diff)
Remove two excess spaces.
Diffstat (limited to 'lispref/objects.texi')
-rw-r--r--lispref/objects.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi
index daa7a8000e..c82242206f 100644
--- a/lispref/objects.texi
+++ b/lispref/objects.texi
@@ -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