(defun isearch-quote-char ()
"Quote special characters for incremental search."
(interactive)
- (isearch-process-search-char (read-quoted-char (isearch-message t))))
+ (isearch-process-search-char (+ (read-quoted-char (isearch-message t))
+ nonascii-insert-offset)))
(defun isearch-return-char ()
"Convert return into newline for incremental search.
;; Portability functions to support various Emacs versions.
(defun isearch-char-to-string (c)
- (make-string 1 c))
+ (char-to-string c))
(defun isearch-text-char-description (c)
(if (and (integerp c) (or (< c ?\ ) (= c ?\^?)))