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 ? (help-for-help) 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 \\[help-for-help] command."
  (interactive)
  (unless (get-buffer help-for-help-buffer-name)
    (error (substitute-command-keys "No %s buffer; use \\[help-for-help] 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))