1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge changes from emacs-23 branch

This commit is contained in:
Chong Yidong 2011-08-30 18:43:43 -04:00
commit 51751aa26f
4 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-08-30 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
* lists.texi (Building Lists): Fix typo.
2011-08-30 Chong Yidong <cyd@stupidchicken.com>
* display.texi (Basic Faces): New node. Document new faces.

View file

@ -462,7 +462,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