]> git.eshelyaron.com Git - emacs.git/commitdiff
* dic/lispref/lists.texi (Building Lists): Fix typo.
authorDani Moncayo <dmoncayo@gmail.com>
Sun, 28 Aug 2011 19:08:45 +0000 (15:08 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 28 Aug 2011 19:08:45 +0000 (15:08 -0400)
doc/lispref/ChangeLog
doc/lispref/lists.texi

index 1b89cefb271315d4aab750e138deebc5f9522294..2db274f27034c0419ab968edbff2a9a4b78a9076 100644 (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
index b45277acfb3e59a0665453156b3d9fc91a0f61fa..383023401ae8a884cdd552c72d5c1310b02c6084 100644 (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