emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 74baea0: Fix indentation of an @example in ELisp ma


From: Eli Zaretskii
Subject: [Emacs-diffs] master 74baea0: Fix indentation of an @example in ELisp manual
Date: Wed, 09 Sep 2015 19:07:30 +0000

branch: master
commit 74baea086d1ea606bae99bfc8c9195c21d5530fc
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix indentation of an @example in ELisp manual
    
    * doc/lispref/syntax.texi (Categories): Untabify the example.
    (Bug#21448)
---
 doc/lispref/syntax.texi |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index 90daf34..3ab1e9d 100644
--- a/doc/lispref/syntax.texi
+++ b/doc/lispref/syntax.texi
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]