diff options
| -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 |