Function: isearch-yank-char
isearch-yank-char is an interactive and byte-compiled function defined
in isearch.el.gz.
Signature
(isearch-yank-char &optional ARG)
Documentation
Pull next character from buffer into search string.
If optional ARG is non-nil, pull in the next ARG characters.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-yank-char (&optional arg)
"Pull next character from buffer into search string.
If optional ARG is non-nil, pull in the next ARG characters."
(interactive "p")
(isearch-yank-internal (lambda () (forward-char arg) (point))))