Function: isearch-printing-char
isearch-printing-char is an interactive and byte-compiled function
defined in isearch.el.gz.
Signature
(isearch-printing-char &optional CHAR COUNT)
Documentation
Add this ordinary printing CHAR to the search string and search.
With argument, add COUNT copies of the character.
Probably introduced at or before Emacs version 24.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-printing-char (&optional char count)
"Add this ordinary printing CHAR to the search string and search.
With argument, add COUNT copies of the character."
(interactive (list last-command-event
(prefix-numeric-value current-prefix-arg)))
(let ((char (or char last-command-event)))
(if (= char ?\S-\ )
(setq char ?\s))
(if current-input-method
(isearch-process-search-multibyte-characters char count)
(isearch-process-search-char char count))))