aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2007-03-01 13:43:48 +0000
committerKim F. Storm2007-03-01 13:43:48 +0000
commitcde6fe5cd0a02cdb697d3d0f3c026e42d9afc7dc (patch)
tree210a8e2c8703d044f5e4bfffcaf4aef9ce552228
parente2495d961fbd85336e0709087154203dd2afaf86 (diff)
downloademacs-cde6fe5cd0a02cdb697d3d0f3c026e42d9afc7dc.tar.gz
emacs-cde6fe5cd0a02cdb697d3d0f3c026e42d9afc7dc.zip
2007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se>
* replace.el (perform-replace): Propertize message.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/replace.el6
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f09460e6a60..78eb1443aea 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se>
2
3 * replace.el (perform-replace): Propertize message.
4
12007-03-01 Carsten Dominik <dominik@science.uva.nl> 52007-03-01 Carsten Dominik <dominik@science.uva.nl>
2 6
3 * textmodes/org.el (org-prepare-agenda-buffers): Also check for 7 * textmodes/org.el (org-prepare-agenda-buffers): Also check for
@@ -9,7 +13,7 @@
9 13
102007-02-28 Nick Roberts <nickrob@snap.net.nz> 142007-02-28 Nick Roberts <nickrob@snap.net.nz>
11 15
12 * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump): 16 * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump):
13 Correct doc strings. 17 Correct doc strings.
14 18
152007-02-28 Chong Yidong <cyd@stupidchicken.com> 192007-02-28 Chong Yidong <cyd@stupidchicken.com>
@@ -41,6 +45,7 @@
41 45
42 * desktop.el: Delete header line listing me as maintainer. 46 * desktop.el: Delete header line listing me as maintainer.
43 47
48>>>>>>> 1.10749
442007-02-28 Glenn Morris <rgm@gnu.org> 492007-02-28 Glenn Morris <rgm@gnu.org>
45 50
46 * tutorial.el (tutorial--describe-nonstandard-key): Tweak text in 51 * tutorial.el (tutorial--describe-nonstandard-key): Tweak text in
diff --git a/lisp/replace.el b/lisp/replace.el
index 20f38aec32f..5b970681ea7 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1423,8 +1423,10 @@ make, or the user didn't cancel the call."
1423 1423
1424 (message 1424 (message
1425 (if query-flag 1425 (if query-flag
1426 (substitute-command-keys 1426 (apply 'propertize
1427 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")))) 1427 (substitute-command-keys
1428 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")
1429 minibuffer-prompt-properties))))
1428 1430
1429 ;; If region is active, in Transient Mark mode, operate on region. 1431 ;; If region is active, in Transient Mark mode, operate on region.
1430 (when start 1432 (when start