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