]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-process-search-multibyte-characters): If
authorKenichi Handa <handa@m17n.org>
Tue, 19 Aug 1997 10:58:40 +0000 (10:58 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 19 Aug 1997 10:58:40 +0000 (10:58 +0000)
read-multilingual-string returns null string, just call
isearch-update.

lisp/international/isearch-x.el

index abf797788b4871238e465f0a306a30c51f908de5..be842d4f101dc9dba70e8fb90660d13ddedcdda3 100644 (file)
@@ -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