]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak the whitespace before "This is a generic function"
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 29 Sep 2021 06:25:14 +0000 (08:25 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 29 Sep 2021 06:25:14 +0000 (08:25 +0200)
* lisp/emacs-lisp/cl-generic.el (cl--generic-describe): Make the
number of blank lines before this section consistent (whether
there's an indented section before it or not).

lisp/emacs-lisp/cl-generic.el

index 1640975b84f1723c3f40bd4cb4c60e4b54e468b1..4834fb13c6ad1ba44b8f60376913763cfc74306f 100644 (file)
@@ -1026,7 +1026,10 @@ MET-NAME is as returned by `cl--generic-load-hist-format'."
     (when generic
       (require 'help-mode)              ;Needed for `help-function-def' button!
       (save-excursion
-        (insert "\n\nThis is a generic function.\n\n")
+        ;; Ensure that we have two blank lines (but not more).
+        (unless (looking-back "\n\n" (- (point) 2))
+          (insert "\n"))
+        (insert "This is a generic function.\n\n")
         (insert (propertize "Implementations:\n\n" 'face 'bold))
         ;; Loop over fanciful generics
         (dolist (method (cl--generic-method-table generic))