Function: comint-history-isearch-backward-regexp
comint-history-isearch-backward-regexp is an interactive and
byte-compiled function defined in comint.el.gz.
Signature
(comint-history-isearch-backward-regexp)
Documentation
Search for a regular expression backward in input history using Isearch.
Probably introduced at or before Emacs version 23.2.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-history-isearch-backward-regexp ()
"Search for a regular expression backward in input history using Isearch."
(interactive nil comint-mode)
(setq comint--force-history-isearch t)
(isearch-backward-regexp nil t))