aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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:
1089@example 1089@example
1090(defvar special-category-table-for-bidi 1090(defvar special-category-table-for-bidi
1091 (let ((category-table (make-category-table)) 1091 (let ((category-table (make-category-table))
1092 (uniprop-table (unicode-property-table-internal 'bidi-class))) 1092 (uniprop-table (unicode-property-table-internal 'bidi-class)))
1093 (define-category ?R "Characters of bidi-class R, AL, or RLO" 1093 (define-category ?R "Characters of bidi-class R, AL, or RLO"
1094 category-table) 1094 category-table)
1095 (map-char-table 1095 (map-char-table
1096 #'(lambda (key val) 1096 #'(lambda (key val)
1097 (if (memq val '(R AL RLO)) 1097 (if (memq val '(R AL RLO))
1098 (modify-category-entry key ?R category-table))) 1098 (modify-category-entry key ?R category-table)))
1099 uniprop-table) 1099 uniprop-table)
1100 category-table)) 1100 category-table))
1101@end example 1101@end example