1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

* dic/lispref/lists.texi (Building Lists): Fix typo.

This commit is contained in:
Dani Moncayo 2011-08-28 15:08:45 -04:00 committed by Chong Yidong
parent 9234aedc26
commit 1f403cb991
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-08-28 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
* lists.texi (Building Lists): Fix typo.
2011-07-03 Chong Yidong <cyd@stupidchicken.com>
* customize.texi (Composite Types): Move alist and plist to here

View File

@ -463,7 +463,7 @@ element is @var{object}. Compare @code{make-list} with
@result{} nil
@end group
@group
(setq l (make-list 3 '(a b))
(setq l (make-list 3 '(a b)))
@result{} ((a b) (a b) (a b))
(eq (car l) (cadr l))
@result{} t