Function: xwidget-webkit-isearch-printing-char-with-input-method

xwidget-webkit-isearch-printing-char-with-input-method is a byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-webkit-isearch-printing-char-with-input-method CHAR)

Documentation

Handle printing char CHAR with the current input method.

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-isearch-printing-char-with-input-method (char)
  "Handle printing char CHAR with the current input method."
  (let ((minibuffer-local-map (make-keymap))
        (xwidget-webkit-isearch--read-string-buffer (current-buffer)))
    (define-key minibuffer-local-map [with-input-method]
      'xwidget-webkit-isearch-with-input-method)
    (setq unread-command-events
          (cons 'with-input-method
                (cons char unread-command-events)))
    (read-string "Search contents: "
                 xwidget-webkit-isearch--string
                 'junk-hist nil t)
    (xwidget-webkit-isearch--update)))