Function: xwidget-webkit-isearch-printing-char

xwidget-webkit-isearch-printing-char is an interactive and byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-webkit-isearch-printing-char CHAR &optional COUNT)

Documentation

Add ordinary character CHAR to the search string and search.

With argument, add COUNT copies of CHAR.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-isearch-printing-char (char &optional count)
  "Add ordinary character CHAR to the search string and search.
With argument, add COUNT copies of CHAR."
  (interactive (list last-command-event
                     (prefix-numeric-value current-prefix-arg)))
  (if current-input-method
      (xwidget-webkit-isearch-printing-char-with-input-method char)
    (setq xwidget-webkit-isearch--string (concat xwidget-webkit-isearch--string
                                                 (make-string (or count 1) char))))
  (xwidget-webkit-isearch--update))