summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2015-09-09 22:06:28 +0300
committerEli Zaretskii <eliz@gnu.org>2015-09-09 22:06:28 +0300
commit74baea086d1ea606bae99bfc8c9195c21d5530fc (patch)
tree2b6e6d7872a541054400f38f79b2bac721e53528
parent1267e12ba716734195a3bb6667f7ef5807ea0567 (diff)
downloademacs-74baea086d1ea606bae99bfc8c9195c21d5530fc.tar.gz
Fix indentation of an @example in ELisp manual
* doc/lispref/syntax.texi (Categories): Untabify the example. (Bug#21448)
-rw-r--r--doc/lispref/syntax.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index 90daf34f0dc..3ab1e9d81d8 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