diff options
| author | Kim F. Storm | 2007-03-01 13:43:48 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2007-03-01 13:43:48 +0000 |
| commit | cde6fe5cd0a02cdb697d3d0f3c026e42d9afc7dc (patch) | |
| tree | 210a8e2c8703d044f5e4bfffcaf4aef9ce552228 /lisp/replace.el | |
| parent | e2495d961fbd85336e0709087154203dd2afaf86 (diff) | |
| download | emacs-cde6fe5cd0a02cdb697d3d0f3c026e42d9afc7dc.tar.gz emacs-cde6fe5cd0a02cdb697d3d0f3c026e42d9afc7dc.zip | |
2007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se>
* replace.el (perform-replace): Propertize message.
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 6 |
1 files changed, 4 insertions, 2 deletions
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 |