]> code.delx.au - gnu-emacs/commitdiff
(isearch-complete): Update isearch-message.
authorRichard M. Stallman <rms@gnu.org>
Sat, 3 May 2003 13:49:47 +0000 (13:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 3 May 2003 13:49:47 +0000 (13:49 +0000)
lisp/isearch.el

index bb989a73f955358b44d9cfb41ba3cb3f847ba2c8..754b7cf6fa1745083c339e8d7b6a26f03f7760d4 100644 (file)
@@ -1519,7 +1519,10 @@ The completed string is then editable in the minibuffer.
 If there is no completion possible, say so and continue searching."
   (interactive)
   (if (isearch-complete1)
-      (isearch-edit-string)
+      (progn (setq isearch-message
+                  (mapconcat 'isearch-text-char-description
+                             isearch-string ""))
+            (isearch-edit-string))
     ;; else
     (sit-for 1)
     (isearch-update)))