diff options
| author | Richard M. Stallman | 1993-12-23 04:40:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-23 04:40:13 +0000 |
| commit | a1c7dec409a9627a93cb6e27c7bb22353ef75c5f (patch) | |
| tree | 587596e771c8d02bf7622d5892bee73468e19d47 /lisp/replace.el | |
| parent | 12fbf178bb2ca7e953e867ebdb1c3a3aebc8d0c4 (diff) | |
| download | emacs-a1c7dec409a9627a93cb6e27c7bb22353ef75c5f.tar.gz emacs-a1c7dec409a9627a93cb6e27c7bb22353ef75c5f.zip | |
(perform-replace): Prompt now says how to get help.
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index b8bf0648c24..2678e20c26d 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -493,7 +493,8 @@ which will run faster and do exactly what you probably want." | |||
| 493 | ;; Loop reading commands until one of them sets done, | 493 | ;; Loop reading commands until one of them sets done, |
| 494 | ;; which means it has finished handling this occurrence. | 494 | ;; which means it has finished handling this occurrence. |
| 495 | (while (not done) | 495 | (while (not done) |
| 496 | (message "Query replacing %s with %s: " | 496 | (message (substitute-command-keys |
| 497 | "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ") | ||
| 497 | from-string next-replacement) | 498 | from-string next-replacement) |
| 498 | (setq key (read-event)) | 499 | (setq key (read-event)) |
| 499 | (setq key (vector key)) | 500 | (setq key (vector key)) |