# HG changeset patch # User Richard M. Stallman # Date 1008533953 0 # Node ID a2dac1893064c689deea2c4ee4dc9bab8d00080e # Parent a67d42446c082408a64a7e7c7d6805e42919e1ba (isearch-edit-string): When we set isearch-string to the default, also set isearch-message. diff -r a67d42446c08 -r a2dac1893064 lisp/isearch.el --- a/lisp/isearch.el Sun Dec 16 20:03:11 2001 +0000 +++ b/lisp/isearch.el Sun Dec 16 20:19:13 2001 +0000 @@ -890,7 +890,11 @@ (setq isearch-string (or (car (if isearch-regexp regexp-search-ring search-ring)) - "")) + "") + + isearch-message + (mapconcat 'isearch-text-char-description + isearch-string "")) ;; This used to set the last search string, ;; but I think it is not right to do that here. ;; Only the string actually used should be saved.