Function: isearch-text-char-description
isearch-text-char-description is a byte-compiled function defined in
isearch.el.gz.
Signature
(isearch-text-char-description C)
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
;; Portability functions to support various Emacs versions.
(defun isearch-text-char-description (c)
(cond
((< c ?\s) (propertize
(char-to-string c)
'display (propertize (format "^%c" (+ c 64)) 'face 'escape-glyph)))
((= c ?\^?) (propertize
(char-to-string c)
'display (propertize "^?" 'face 'escape-glyph)))
(t (char-to-string c))))