]> git.eshelyaron.com Git - emacs.git/commitdiff
Add mode tagging to previously added help commands
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 31 Oct 2021 18:02:46 +0000 (19:02 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 31 Oct 2021 18:02:46 +0000 (19:02 +0100)
* lisp/help-mode.el (help-goto-previous-page): New command and key
binding.
(help-goto-previous-page): Ditto.

lisp/help-mode.el

index 83e783bdd7386ca26c8525d50198d00567c5c310..b76c7dadaf86a55b3919cf285e52b25da749bb0c 100644 (file)
@@ -811,7 +811,7 @@ See `help-make-xrefs'."
 (defun help-goto-next-page ()
   "Go to the next page (if any) in the current buffer.
 The help buffers are divided into \"pages\" by the ^L character."
-  (interactive)
+  (interactive nil help-mode)
   (push-mark)
   (forward-page)
   (unless (eobp)
@@ -822,7 +822,7 @@ The help buffers are divided into \"pages\" by the ^L character."
 (If not at the start of a page, go to the start of the current page.)
 
 The help buffers are divided into \"pages\" by the ^L character."
-  (interactive)
+  (interactive nil help-mode)
   (push-mark)
   (backward-page (if (looking-back "\f\n" (- (point) 5)) 2 1))
   (unless (bobp)