Mercurial > emacs
diff lisp/replace.el @ 5337:0740b2a454d9
(query-replace-map): Don't bind ESC.
(query-replace-help): Changed accordingly.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 24 Dec 1993 22:55:03 +0000 |
| parents | 1b3421a9f072 |
| children | cfd16a1af914 |
line wrap: on
line diff
--- a/lisp/replace.el Fri Dec 24 07:29:39 1993 +0000 +++ b/lisp/replace.el Fri Dec 24 22:55:03 1993 +0000 @@ -374,7 +374,7 @@ ;; to make that display both SPC and Y. (defconst query-replace-help "Type Space or `y' to replace one match, Delete or `n' to skip to next, -ESC or `q' to exit, Period to replace one match and exit, +RET or `q' to exit, Period to replace one match and exit, Comma to replace but not move point immediately, C-r to enter recursive edit (\\[exit-recursive-edit] to get out again), C-w to delete match and recursive edit, @@ -397,8 +397,6 @@ (define-key query-replace-map "y" 'act) (define-key query-replace-map "n" 'skip) (define-key query-replace-map "," 'act-and-show) -(define-key query-replace-map "\e" 'exit) -(define-key query-replace-map [escape] 'exit) (define-key query-replace-map "q" 'exit) (define-key query-replace-map "\r" 'exit) (define-key query-replace-map [return] 'exit)
