]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix indentation of an @example in ELisp manual
authorEli Zaretskii <eliz@gnu.org>
Wed, 9 Sep 2015 19:06:28 +0000 (22:06 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 9 Sep 2015 19:06:28 +0000 (22:06 +0300)
* doc/lispref/syntax.texi (Categories): Untabify the example.
(Bug#21448)

doc/lispref/syntax.texi

index 90daf34f0dc5812a0491416765b67679f711ad38..3ab1e9d81d8ff9af43fd0b05fd1cc2fefb435a92 100644 (file)
@@ -1089,13 +1089,13 @@ and using it in a special category table:
 @example
 (defvar special-category-table-for-bidi
   (let ((category-table (make-category-table))
-       (uniprop-table (unicode-property-table-internal 'bidi-class)))
+        (uniprop-table (unicode-property-table-internal 'bidi-class)))
     (define-category ?R "Characters of bidi-class R, AL, or RLO"
                      category-table)
     (map-char-table
      #'(lambda (key val)
-        (if (memq val '(R AL RLO))
-            (modify-category-entry key ?R category-table)))
+         (if (memq val '(R AL RLO))
+             (modify-category-entry key ?R category-table)))
      uniprop-table)
     category-table))
 @end example