]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify erc--fill-module-docstring
authorF. Jason Park <jp@neverwas.me>
Wed, 13 Sep 2023 09:50:28 +0000 (02:50 -0700)
committerF. Jason Park <jp@neverwas.me>
Sun, 17 Sep 2023 23:06:49 +0000 (16:06 -0700)
* lisp/erc/erc-common.el (erc--fill-module-docstring): Don't run hooks
for major mode when filling.  Prefer `lisp-data-mode' to
`emacs-lisp-mode'.

lisp/erc/erc-common.el

index 85971797c2fd784f89152cba685866a981a117a6..67c2cf8535b08604d713f69a7708f0b909bff279 100644 (file)
@@ -270,18 +270,20 @@ instead of a `set' state, which precludes any actual saving."
              " above."))))))
 
 (defun erc--fill-module-docstring (&rest strings)
+  "Concatenate STRINGS and fill as a doc string."
+  ;; Perhaps it's better to mimic `internal--format-docstring-line'
+  ;; and use basic filling instead of applying a major mode?
   (with-temp-buffer
-    (emacs-lisp-mode)
-    (insert "(defun foo ()\n"
-            (format "%S" (apply #'concat strings))
-            "\n(ignore))")
+    (delay-mode-hooks
+      (if (fboundp 'lisp-data-mode) (lisp-data-mode) (emacs-lisp-mode)))
+    (insert (format "%S" (apply #'concat strings)))
     (goto-char (point-min))
-    (forward-line 2)
-    (let ((emacs-lisp-docstring-fill-column 65)
+    (forward-line)
+    (let ((fill-column 65)
           (sentence-end-double-space t))
       (fill-paragraph))
     (goto-char (point-min))
-    (nth 3 (read (current-buffer)))))
+    (read (current-buffer))))
 
 (defmacro erc--find-feature (name alias)
   `(pcase (erc--find-group ',name ,(and alias (list 'quote alias)))