Function: xwidget-webkit-isearch--update
xwidget-webkit-isearch--update is a byte-compiled function defined in
xwidget.el.gz.
Signature
(xwidget-webkit-isearch--update &optional ONLY-MESSAGE)
Documentation
Update the current buffer's WebKit widget's search query.
If ONLY-MESSAGE is non-nil, the query will not be sent to the
WebKit widget. The query will be set to the contents of
xwidget-webkit-isearch--string.
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-isearch--update (&optional only-message)
"Update the current buffer's WebKit widget's search query.
If ONLY-MESSAGE is non-nil, the query will not be sent to the
WebKit widget. The query will be set to the contents of
`xwidget-webkit-isearch--string'."
(unless only-message
(xwidget-webkit-search xwidget-webkit-isearch--string
(xwidget-webkit-current-session)
t xwidget-webkit-isearch--is-reverse t))
(let ((message-log-max nil))
(message "%s" (concat (propertize "Search contents: " 'face 'minibuffer-prompt)
xwidget-webkit-isearch--string))))