]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-char-to-string): Use char-to-string.
authorRichard M. Stallman <rms@gnu.org>
Tue, 15 Jul 1997 00:23:03 +0000 (00:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 15 Jul 1997 00:23:03 +0000 (00:23 +0000)
(isearch-quote-char): Add nonascii-insert-offset.

lisp/isearch.el

index 1fc4ce97d63beb1598157e415971e1aa21f0e6a0..9e0c3102fae3aa98eed5f049b05abe26dda2bcef 100644 (file)
@@ -1162,7 +1162,8 @@ and the meta character is unread so that it applies to editing the string."
 (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.
@@ -1669,7 +1670,7 @@ since they have special meaning in a regexp."
 ;; 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 ?\^?)))