Function: search-forward-help-for-help
search-forward-help-for-help is an interactive and byte-compiled
function defined in help.el.gz.
Signature
(search-forward-help-for-help)
Documentation
Search forward in the help-for-help window.
This command is meant to be used after issuing the C-h C-h command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/help.el.gz
(defun search-forward-help-for-help ()
"Search forward in the help-for-help window.
This command is meant to be used after issuing the `C-h C-h' command."
(interactive)
(unless (get-buffer help-for-help-buffer-name)
(error "No %s buffer; use `C-h C-h' first" help-for-help-buffer-name))
;; Move cursor to the "help window".
(pop-to-buffer help-for-help-buffer-name)
;; Do incremental search forward.
(isearch-forward nil t))