changeset 50783:f26c6004759f

(isearch-complete): Update isearch-message.
author Richard M. Stallman <rms@gnu.org>
date Sat, 03 May 2003 13:49:47 +0000
parents 1b22075b3bb5
children f9cbd74b1337
files lisp/isearch.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Sat May 03 13:48:39 2003 +0000
+++ b/lisp/isearch.el	Sat May 03 13:49:47 2003 +0000
@@ -1519,7 +1519,10 @@
 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)))