]> code.delx.au - gnu-emacs/blobdiff - doc/lispref/sequences.texi
Mark some doc/ rules as PHONY.
[gnu-emacs] / doc / lispref / sequences.texi
index f55c93abf316a5b1ddf9a05bc34de994493c10c4..a73c4790b96a7250e026aaad3cd14ade8c16995c 100644 (file)
@@ -1,7 +1,8 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001,
-@c   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010  Free Software Foundation, Inc.
+@c   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+@c   Free Software Foundation, Inc.
 @c See the file elisp.texi for copying conditions.
 @setfilename ../../info/sequences
 @node Sequences Arrays Vectors, Hash Tables, Lists, Top
@@ -669,13 +670,13 @@ For example, here is how to examine the elements of the syntax table:
 (let (accumulator)
    (map-char-table
     #'(lambda (key value)
-       (setq accumulator
-             (cons (list
-                    (if (consp key)
-                        (list (car key) (cdr key))
-                      key)
-                    value)
-                   accumulator)))
+        (setq accumulator
+              (cons (list
+                     (if (consp key)
+                         (list (car key) (cdr key))
+                       key)
+                     value)
+                    accumulator)))
     (syntax-table))
    accumulator)
 @result{}