summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-12-24 22:55:03 +0000
committerRichard M. Stallman <rms@gnu.org>1993-12-24 22:55:03 +0000
commitbe44f62cfbf2011b3bf4df4fd00f32bd2e96c5f8 (patch)
tree40322b6efd44d880d92f924b74cfcd598df7e65a /lisp/replace.el
parent67fc28a745cf507c9336d3e0c62c670642f1c37b (diff)
downloademacs-be44f62cfbf2011b3bf4df4fd00f32bd2e96c5f8.tar.gz
(query-replace-map): Don't bind ESC.
(query-replace-help): Changed accordingly.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el4
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.
;; 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 @@ The valid answers include `act', `skip', `act-and-show',
(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)