diff options
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 2678e20c26d..ad0c1724608 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -374,7 +374,7 @@ It serves as a menu to find any of the occurrences in this buffer. | |||
| 374 | ;; to make that display both SPC and Y. | 374 | ;; to make that display both SPC and Y. |
| 375 | (defconst query-replace-help | 375 | (defconst query-replace-help |
| 376 | "Type Space or `y' to replace one match, Delete or `n' to skip to next, | 376 | "Type Space or `y' to replace one match, Delete or `n' to skip to next, |
| 377 | ESC or `q' to exit, Period to replace one match and exit, | 377 | RET or `q' to exit, Period to replace one match and exit, |
| 378 | Comma to replace but not move point immediately, | 378 | Comma to replace but not move point immediately, |
| 379 | C-r to enter recursive edit (\\[exit-recursive-edit] to get out again), | 379 | C-r to enter recursive edit (\\[exit-recursive-edit] to get out again), |
| 380 | C-w to delete match and recursive edit, | 380 | C-w to delete match and recursive edit, |
| @@ -397,8 +397,6 @@ The valid answers include `act', `skip', `act-and-show', | |||
| 397 | (define-key query-replace-map "y" 'act) | 397 | (define-key query-replace-map "y" 'act) |
| 398 | (define-key query-replace-map "n" 'skip) | 398 | (define-key query-replace-map "n" 'skip) |
| 399 | (define-key query-replace-map "," 'act-and-show) | 399 | (define-key query-replace-map "," 'act-and-show) |
| 400 | (define-key query-replace-map "\e" 'exit) | ||
| 401 | (define-key query-replace-map [escape] 'exit) | ||
| 402 | (define-key query-replace-map "q" 'exit) | 400 | (define-key query-replace-map "q" 'exit) |
| 403 | (define-key query-replace-map "\r" 'exit) | 401 | (define-key query-replace-map "\r" 'exit) |
| 404 | (define-key query-replace-map [return] 'exit) | 402 | (define-key query-replace-map [return] 'exit) |