diff options
author | Glenn Morris <rgm@gnu.org> | 2017-12-22 16:26:08 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-12-22 16:26:08 -0500 |
commit | cf36c821278414cad8584c690210577ad0a38e70 (patch) | |
tree | ca43137c9ae900275d53c00972b4dab35a9dbfa0 /doc/lispref/syntax.texi | |
parent | b07b56a3510748cfc47d2fbf97fb8e1f3070a16d (diff) | |
download | emacs-cf36c821278414cad8584c690210577ad0a38e70.tar.gz emacs-cf36c821278414cad8584c690210577ad0a38e70.tar.bz2 emacs-cf36c821278414cad8584c690210577ad0a38e70.zip |
Avoid some overfull lines in PDF lispref
* doc/lispref/commands.texi (Reading One Event):
* doc/lispref/display.texi (SVG Images):
* doc/lispref/frames.texi (Size Parameters):
* doc/lispref/syntax.texi (Categories):
* doc/lispref/windows.texi (Frame Layouts with Side Windows):
Avoid overfull lines.
Diffstat (limited to 'doc/lispref/syntax.texi')
-rw-r--r-- | doc/lispref/syntax.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index b37f2b22b82..566270fb52b 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi @@ -1099,12 +1099,13 @@ bidi-class}). (let ((category-table (make-category-table)) ;; Create a char-table which gives the 'bidi-class' Unicode ;; property for each character. - (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) - ;; Modify the category entry of each character whose 'bidi-class' - ;; Unicode property is R, AL, or RLO -- these have a - ;; right-to-left directionality. + ;; Modify the category entry of each character whose + ;; 'bidi-class' Unicode property is R, AL, or RLO -- + ;; these have a right-to-left directionality. (map-char-table #'(lambda (key val) (if (memq val '(R AL RLO)) |