Function: isearch--describe-regexp-mode
isearch--describe-regexp-mode is a byte-compiled function defined in
isearch.el.gz.
Signature
(isearch--describe-regexp-mode REGEXP-FUNCTION &optional SPACE-BEFORE)
Documentation
Make a string for describing REGEXP-FUNCTION.
If SPACE-BEFORE is non-nil, put a space before, instead of after, the word mode.
Aliases
isearch--describe-word-mode (obsolete since 25.1)
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch--describe-regexp-mode (regexp-function &optional space-before)
"Make a string for describing REGEXP-FUNCTION.
If SPACE-BEFORE is non-nil, put a space before, instead of after,
the word mode."
(when (eq regexp-function t)
(setq regexp-function #'word-search-regexp))
(let ((description
(cond
;; 1. Do not use a description on the default search mode,
;; but only if the default search mode is non-nil.
((and (or (and search-default-mode
(equal search-default-mode regexp-function))
;; Special case where `search-default-mode' is t
;; (defaults to regexp searches).
(and (eq search-default-mode t)
(eq search-default-mode isearch-regexp)))
;; Also do not omit description in case of error
;; in default non-literal search.
(or isearch-success (not (or regexp-function isearch-regexp))))
"")
;; 2. Use the `isearch-message-prefix' set for
;; `regexp-function' if available.
(regexp-function
(and (symbolp regexp-function)
(or (get regexp-function 'isearch-message-prefix)
"")))
;; 3. Else if `isearch-regexp' is non-nil, set description
;; to "regexp ".
(isearch-regexp "regexp ")
;; 4. Else if we're in literal mode (and if the default
;; mode is also not literal), describe it.
((functionp search-default-mode) "literal ")
;; 5. And finally, if none of the above is true, set the
;; description to an empty string.
(t ""))))
(if space-before
;; Move space from the end to the beginning.
(replace-regexp-in-string "\\(.*\\) \\'" " \\1" description)
description)))