Function: isearch-string-propertize

isearch-string-propertize is a byte-compiled function defined in isearch.el.gz.

Signature

(isearch-string-propertize STRING &optional PROPERTIES)

Documentation

Add isearch properties to the isearch string.

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-string-propertize (string &optional properties)
  "Add isearch properties to the isearch string."
  (unless properties
    (setq properties `(isearch-case-fold-search ,isearch-case-fold-search))
    (unless isearch-regexp
      (setq properties (append properties `(isearch-regexp-function ,isearch-regexp-function)))))
  (apply 'propertize string properties))