Function: Info-search-backward
Info-search-backward is an interactive and byte-compiled function
defined in info.el.gz.
Signature
(Info-search-backward REGEXP &optional BOUND NOERROR COUNT)
Documentation
Search for REGEXP in the reverse direction.
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-backward (regexp &optional bound noerror count)
"Search for REGEXP in the reverse direction."
(interactive (list (read-string
(format-prompt
"Regexp search%s backward" (car Info-search-history)
(if case-fold-search "" " case-sensitively"))
nil 'Info-search-history))
Info-mode)
(Info-search regexp bound noerror count 'backward))