emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/visual-fill-column ae4edc225a 136/137: Fix alignment in do


From: ELPA Syncer
Subject: [nongnu] elpa/visual-fill-column ae4edc225a 136/137: Fix alignment in doc string of visual-fill-column--add-extra-width
Date: Sun, 2 Jan 2022 22:59:29 -0500 (EST)

branch: elpa/visual-fill-column
commit ae4edc225acea12a035c0586185847306ecb06ef
Author: Joost Kremers <joostkremers@fastmail.fm>
Commit: Joost Kremers <joostkremers@fastmail.fm>

    Fix alignment in doc string of visual-fill-column--add-extra-width
---
 visual-fill-column.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/visual-fill-column.el b/visual-fill-column.el
index 4f9bc7802e..a36a5992eb 100644
--- a/visual-fill-column.el
+++ b/visual-fill-column.el
@@ -287,8 +287,8 @@ and `text-scale-mode-step'."
 (defun visual-fill-column--add-extra-width (left right add-width)
   "Calculate new margins given additional text width.
 LEFT and RIGHT are the current margins, ADD-WIDTH a cons cell of
-  additional columns to be added to the text area.  Return a cons
-  cell of the new margins, which will never be less than zero."
+additional columns to be added to the text area.  Return a cons
+cell of the new margins, which will never be less than zero."
   (cons (max 0 (- left (car add-width)))
         (max 0 (- right (cdr add-width)))))
 



reply via email to

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