diff options
| author | Richard M. Stallman | 2001-08-25 02:01:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-08-25 02:01:04 +0000 |
| commit | 92e732c4b68e408c532c18c806c4fa56c20f61c8 (patch) | |
| tree | 3d7b882333c3f8648160fd2ba1e1005cb2d319ed | |
| parent | 777fcecfe241807e5f1f44847f345cfe1854b53d (diff) | |
| download | emacs-92e732c4b68e408c532c18c806c4fa56c20f61c8.tar.gz emacs-92e732c4b68e408c532c18c806c4fa56c20f61c8.zip | |
Remove two excess spaces.
| -rw-r--r-- | lispref/objects.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index daa7a8000ea..c82242206fb 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, | |||
| 711 | @code{(@var{a} .@: @var{b})} stands for a cons cell whose @sc{car} is | 711 | @code{(@var{a} .@: @var{b})} stands for a cons cell whose @sc{car} is |
| 712 | the object @var{a}, and whose @sc{cdr} is the object @var{b}. Dotted | 712 | the object @var{a}, and whose @sc{cdr} is the object @var{b}. Dotted |
| 713 | pair notation is therefore more general than list syntax. In the dotted | 713 | pair notation is therefore more general than list syntax. In the dotted |
| 714 | pair notation, the list @samp{(1 2 3)} is written as @samp{(1 . (2 . (3 | 714 | pair notation, the list @samp{(1 2 3)} is written as @samp{(1 . (2 . (3 |
| 715 | . nil)))}. For @code{nil}-terminated lists, you can use either | 715 | . nil)))}. For @code{nil}-terminated lists, you can use either |
| 716 | notation, but list notation is usually clearer and more convenient. | 716 | notation, but list notation is usually clearer and more convenient. |
| 717 | When printing a list, the dotted pair notation is only used if the | 717 | When printing a list, the dotted pair notation is only used if the |
| @@ -801,7 +801,7 @@ the list. | |||
| 801 | 801 | ||
| 802 | @example | 802 | @example |
| 803 | (setq alist-of-colors | 803 | (setq alist-of-colors |
| 804 | '((rose . red) (lily . white) (buttercup . yellow))) | 804 | '((rose . red) (lily . white) (buttercup . yellow))) |
| 805 | @end example | 805 | @end example |
| 806 | 806 | ||
| 807 | @noindent | 807 | @noindent |