diff options
author | Dani Moncayo <dmoncayo@gmail.com> | 2011-08-28 15:08:45 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-08-28 15:08:45 -0400 |
commit | 1f403cb99165f3acc8b07639610f9340e8c2b97f (patch) | |
tree | 59ec94e5b2590266d3c958af926dfe1d57ca0e29 /doc/lispref/lists.texi | |
parent | 9234aedc26fe879274b51baeecf38befeda4c5c5 (diff) | |
download | emacs-1f403cb99165f3acc8b07639610f9340e8c2b97f.tar.gz |
* dic/lispref/lists.texi (Building Lists): Fix typo.
Diffstat (limited to 'doc/lispref/lists.texi')
-rw-r--r-- | doc/lispref/lists.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index b45277acfb3..383023401ae 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi @@ -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 |