emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master bbfa999: Improve docstrings auto-generated by `defi


From: Juanma Barranquero
Subject: [Emacs-diffs] master bbfa999: Improve docstrings auto-generated by `define-minor-mode'
Date: Fri, 4 Oct 2019 18:31:33 -0400 (EDT)

branch: master
commit bbfa9995ff3bdb8a00fe3082bc3249cc1e68e1ab
Author: Juanma Barranquero <address@hidden>
Commit: Juanma Barranquero <address@hidden>

    Improve docstrings auto-generated by `define-minor-mode'
    
    * lisp/emacs-lisp/easy-mmode.el (easy-mmode--mode-docstring):
    When using `easy-mmode--arg-docstring' to auto-generate a
    docstring, refill it up to `emacs-lisp-docstring-fill-column'.
---
 lisp/emacs-lisp/easy-mmode.el | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index 5e7b29e..ccdb25e 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -95,10 +95,18 @@ if ARG is `toggle'; disable the mode otherwise.")
 \\{%s}" mode-pretty-name keymap-sym))))
     (if (string-match-p "\\bARG\\b" doc)
         doc
-      (let ((argdoc (format easy-mmode--arg-docstring
-                            mode-pretty-name)))
+      (let* ((fill-prefix nil)
+             (docs-fc (bound-and-true-p emacs-lisp-docstring-fill-column))
+             (fill-column (if (integerp docs-fc) docs-fc 65))
+             (argdoc (format easy-mmode--arg-docstring mode-pretty-name))
+             (filled (if (fboundp 'fill-region)
+                         (with-temp-buffer
+                           (insert argdoc)
+                           (fill-region (point-min) (point-max) 'left t)
+                           (buffer-string))
+                       argdoc)))
         (replace-regexp-in-string "\\(\n\n\\|\\'\\)\\(.\\|\n\\)*\\'"
-                                  (concat argdoc "\\1")
+                                  (concat filled "\\1")
                                   doc nil nil 1)))))
 
 ;;;###autoload



reply via email to

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