diff options
| author | Kenichi Handa | 2000-05-31 03:49:22 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-05-31 03:49:22 +0000 |
| commit | 3c487103b83cd2863826e367c2b975764a7ea135 (patch) | |
| tree | 6b3aa694c66f86b3d29f58c4c50098d07c72719b | |
| parent | 7e492772bfab8c342847562141ebd85c8d9dfc92 (diff) | |
| download | emacs-3c487103b83cd2863826e367c2b975764a7ea135.tar.gz emacs-3c487103b83cd2863826e367c2b975764a7ea135.zip | |
(isearch-printing-char): If keyboard coding system is
being used, call isearch-process-search-multibyte-characters.
| -rw-r--r-- | lisp/isearch.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 22d5cc82bd2..23b281595f5 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -1236,7 +1236,9 @@ Obsolete." | |||
| 1236 | (if (and enable-multibyte-characters | 1236 | (if (and enable-multibyte-characters |
| 1237 | (>= char ?\200) | 1237 | (>= char ?\200) |
| 1238 | (<= char ?\377)) | 1238 | (<= char ?\377)) |
| 1239 | (isearch-process-search-char (unibyte-char-to-multibyte char)) | 1239 | (if (keyboard-coding-system) |
| 1240 | (isearch-process-search-multibyte-characters char) | ||
| 1241 | (isearch-process-search-char (unibyte-char-to-multibyte char))) | ||
| 1240 | (if current-input-method | 1242 | (if current-input-method |
| 1241 | (isearch-process-search-multibyte-characters char) | 1243 | (isearch-process-search-multibyte-characters char) |
| 1242 | (isearch-process-search-char char))))) | 1244 | (isearch-process-search-char char))))) |