diff options
| author | Eli Zaretskii | 2015-09-09 22:06:28 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-09-09 22:06:28 +0300 |
| commit | 74baea086d1ea606bae99bfc8c9195c21d5530fc (patch) | |
| tree | 2b6e6d7872a541054400f38f79b2bac721e53528 | |
| parent | 1267e12ba716734195a3bb6667f7ef5807ea0567 (diff) | |
| download | emacs-74baea086d1ea606bae99bfc8c9195c21d5530fc.tar.gz emacs-74baea086d1ea606bae99bfc8c9195c21d5530fc.zip | |
Fix indentation of an @example in ELisp manual
* doc/lispref/syntax.texi (Categories): Untabify the example.
(Bug#21448)
| -rw-r--r-- | 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 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 |