Mercurial > emacs
changeset 19433:8020b553a1db
(isearch-process-search-multibyte-characters): If
read-multilingual-string returns null string, just call
isearch-update.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 19 Aug 1997 10:58:40 +0000 |
parents | 4492653b04e8 |
children | 31d9ded94ba4 |
files | lisp/international/isearch-x.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/isearch-x.el Tue Aug 19 10:58:40 1997 +0000 +++ b/lisp/international/isearch-x.el Tue Aug 19 10:58:40 1997 +0000 @@ -60,6 +60,8 @@ (concat (isearch-message-prefix) isearch-message) nil current-input-method)) - (isearch-process-search-string str str))) + (if (and str (> (length str) 0)) + (isearch-process-search-string str str) + (isearch-update)))) ;;; isearch-x.el ends here