emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 cf36c82 3/3: Avoid some overfull lines in PDF lis


From: Glenn Morris
Subject: [Emacs-diffs] emacs-26 cf36c82 3/3: Avoid some overfull lines in PDF lispref
Date: Fri, 22 Dec 2017 16:26:18 -0500 (EST)

branch: emacs-26
commit cf36c821278414cad8584c690210577ad0a38e70
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    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.
---
 doc/lispref/commands.texi |  6 +++---
 doc/lispref/display.texi  |  3 ++-
 doc/lispref/frames.texi   |  3 ++-
 doc/lispref/syntax.texi   |  9 +++++----
 doc/lispref/windows.texi  | 12 ++++++++----
 5 files changed, 20 insertions(+), 13 deletions(-)

diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index 16b58d3..a958cfd 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -2634,9 +2634,9 @@ The return value is the matching value from @var{choices}.
 @lisp
 (read-multiple-choice
  "Continue connecting?"
- '((?a "always" "Accept this certificate this session and for all future 
sessions.")
-   (?s "session only" "Accept this certificate this session only.")
-   (?n "no" "Refuse to use this certificate, and close the connection.")))
+ '((?a "always" "Accept certificate for this and future sessions.")
+   (?s "session only" "Accept certificate this session only.")
+   (?n "no" "Refuse to use certificate, close connection.")))
 @end lisp
 
 The @code{read-multiple-choice-face} face is used to highlight the
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 53c2014..bf70717 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -5543,7 +5543,8 @@ inserts an image with a circle:
 @lisp
 (let ((svg (svg-create 400 400 :stroke-width 10)))
   (svg-gradient svg "gradient1" 'linear '((0 . "red") (100 . "blue")))
-  (svg-circle svg 200 200 100 :gradient "gradient1" :stroke-color "green")
+  (svg-circle svg 200 200 100 :gradient "gradient1"
+                  :stroke-color "green")
   (insert-image (svg-image svg)))
 @end lisp
 
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index edddbdd..1d4671b 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -1716,7 +1716,8 @@ file as, for example
 
 @example
 (setq default-frame-alist
-    '((fullscreen . fullboth) (fullscreen-restore . fullheight)))
+    '((fullscreen . fullboth)
+      (fullscreen-restore . fullheight)))
 @end example
 
 This will give a new frame full height after typing in it @key{F11} for
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index b37f2b2..566270f 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))
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index d73b410..30a3c4a 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -3391,7 +3391,8 @@ producing the frame layout sketched above.
 @example
 @group
 (defvar parameters
-  '(window-parameters . ((no-other-window . t) (no-delete-other-windows . t))))
+  '(window-parameters . ((no-other-window . t)
+                         (no-delete-other-windows . t))))
 
 (setq fit-window-to-buffer-horizontally t)
 (setq window-resize-pixelwise t)
@@ -3404,10 +3405,13 @@ producing the frame layout sketched above.
    ("\\*Tags List\\*" display-buffer-in-side-window
     (side . right) (slot . 0) (window-width . fit-window-to-buffer)
     (preserve-size . (t . nil)) ,parameters)
-   ("\\*\\(?:help\\|grep\\|Completions\\)\\*" display-buffer-in-side-window
-    (side . bottom) (slot . -1) (preserve-size . (nil . t)) ,parameters)
+   ("\\*\\(?:help\\|grep\\|Completions\\)\\*"
+    display-buffer-in-side-window
+    (side . bottom) (slot . -1) (preserve-size . (nil . t))
+    ,parameters)
    ("\\*\\(?:shell\\|compilation\\)\\*" display-buffer-in-side-window
-    (side . bottom) (slot . 1) (preserve-size . (nil . t)) ,parameters)))
+    (side . bottom) (slot . 1) (preserve-size . (nil . t))
+    ,parameters)))
 @end group
 @end example
 



reply via email to

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