mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
Add mode tagging to previously added help commands
* lisp/help-mode.el (help-goto-previous-page): New command and key binding. (help-goto-previous-page): Ditto.
This commit is contained in:
parent
38751a8585
commit
7cba7d5703
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue