diff options
| author | Kenichi Handa | 1998-08-07 05:04:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-08-07 05:04:36 +0000 |
| commit | 39d484ed795c3565403afa9d05305cb4e0257641 (patch) | |
| tree | c565011d9692f4caab5f1c316869c2de46d8b219 | |
| parent | df765be4febf35e57c862675b6256b66621095f0 (diff) | |
| download | emacs-39d484ed795c3565403afa9d05305cb4e0257641.tar.gz emacs-39d484ed795c3565403afa9d05305cb4e0257641.zip | |
(isearch-process-search-multibyte-characters): Fix previous change.
| -rw-r--r-- | lisp/international/isearch-x.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/international/isearch-x.el b/lisp/international/isearch-x.el index 33081821514..4b534217761 100644 --- a/lisp/international/isearch-x.el +++ b/lisp/international/isearch-x.el | |||
| @@ -106,8 +106,9 @@ | |||
| 106 | nil | 106 | nil |
| 107 | current-input-method)) | 107 | current-input-method)) |
| 108 | (if (and str (> (length str) 0)) | 108 | (if (and str (> (length str) 0)) |
| 109 | (isearch-process-search-string str str)) | 109 | (let ((unread-command-events nil)) |
| 110 | (isearch-update)) | 110 | (isearch-process-search-string str str)) |
| 111 | (isearch-update))) | ||
| 111 | (isearch-process-search-char last-char))) | 112 | (isearch-process-search-char last-char))) |
| 112 | 113 | ||
| 113 | ;;; isearch-x.el ends here | 114 | ;;; isearch-x.el ends here |