]> git.eshelyaron.com Git - emacs.git/commitdiff
(help-make-xrefs): Add a final newline to the *Help* buffer.
authorJuri Linkov <juri@jurta.org>
Sun, 11 Apr 2004 09:52:09 +0000 (09:52 +0000)
committerJuri Linkov <juri@jurta.org>
Sun, 11 Apr 2004 09:52:09 +0000 (09:52 +0000)
lisp/help-mode.el

index 024b7ec8eac39faf8746cf71fd42af82ccb9ae3d..149eebb3d360313365169b82787eb31bf9145480 100644 (file)
@@ -432,11 +432,13 @@ that."
        (goto-char (point-max))
        (while (and (not (bobp)) (bolp))
          (delete-char -1))
+        (insert "\n")
         ;; Make a back-reference in this buffer if appropriate.
         (when help-xref-stack
-         (insert "\n\n")
+         (insert "\n")
          (help-insert-xref-button help-back-label 'help-back
-                                  (current-buffer))))
+                                  (current-buffer))
+          (insert "\n")))
       ;; View mode steals RET from us.
       (set (make-local-variable 'minor-mode-overriding-map-alist)
            (list (cons 'view-mode help-xref-override-view-map)))