diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/isearch.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 82d3d781d02..070a6cfd5b3 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -890,7 +890,11 @@ If first char entered is \\[isearch-yank-word], then do word search instead." | |||
| 890 | (setq isearch-string (or (car (if isearch-regexp | 890 | (setq isearch-string (or (car (if isearch-regexp |
| 891 | regexp-search-ring | 891 | regexp-search-ring |
| 892 | search-ring)) | 892 | search-ring)) |
| 893 | "")) | 893 | "") |
| 894 | |||
| 895 | isearch-message | ||
| 896 | (mapconcat 'isearch-text-char-description | ||
| 897 | isearch-string "")) | ||
| 894 | ;; This used to set the last search string, | 898 | ;; This used to set the last search string, |
| 895 | ;; but I think it is not right to do that here. | 899 | ;; but I think it is not right to do that here. |
| 896 | ;; Only the string actually used should be saved. | 900 | ;; Only the string actually used should be saved. |