diff options
| author | Kenichi Handa | 1997-08-19 10:58:40 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-19 10:58:40 +0000 |
| commit | fa7bc762cfc58b6641ab4c442ba4ce6c70dc3de1 (patch) | |
| tree | cbafa6a17ac74f815f686fc9632a5b6c326fee8f | |
| parent | 052040166fc82319435a8152c13e6911b1965d47 (diff) | |
| download | emacs-fa7bc762cfc58b6641ab4c442ba4ce6c70dc3de1.tar.gz emacs-fa7bc762cfc58b6641ab4c442ba4ce6c70dc3de1.zip | |
(isearch-process-search-multibyte-characters): If
read-multilingual-string returns null string, just call
isearch-update.
| -rw-r--r-- | lisp/international/isearch-x.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/international/isearch-x.el b/lisp/international/isearch-x.el index abf797788b4..be842d4f101 100644 --- a/lisp/international/isearch-x.el +++ b/lisp/international/isearch-x.el | |||
| @@ -60,6 +60,8 @@ | |||
| 60 | (concat (isearch-message-prefix) isearch-message) | 60 | (concat (isearch-message-prefix) isearch-message) |
| 61 | nil | 61 | nil |
| 62 | current-input-method)) | 62 | current-input-method)) |
| 63 | (isearch-process-search-string str str))) | 63 | (if (and str (> (length str) 0)) |
| 64 | (isearch-process-search-string str str) | ||
| 65 | (isearch-update)))) | ||
| 64 | 66 | ||
| 65 | ;;; isearch-x.el ends here | 67 | ;;; isearch-x.el ends here |