Function: Info-search-next

Info-search-next is an interactive and byte-compiled function defined in info.el.gz.

Signature

(Info-search-next)

Documentation

Search for next regexp from a previous Info-search command.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-search-next ()
  "Search for next regexp from a previous `Info-search' command."
  (interactive nil Info-mode)
  (let ((case-fold-search Info-search-case-fold))
    (if Info-search-history
        (Info-search (car Info-search-history))
      (call-interactively 'Info-search))))