summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:56:30 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:56:30 +0000
commit573743d2f28af8383383ec5ac680b01eedd560e5 (patch)
tree200b895b6130ea1d6e391dc3bdd1a358e2091f4c
parent572e07532face80b82d92ddc55effeb029827cca (diff)
downloademacs-573743d2f28af8383383ec5ac680b01eedd560e5.tar.gz
(dired-query-alist): Fix use of character constant.
-rw-r--r--lisp/dired-aux.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index ca6f12e0fc7..5bba250b67b 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -677,7 +677,7 @@ Otherwise, the rule is a compression rule, and compression is done with gzip.")
'((?\y . y) (?\040 . y) ; `y' or SPC means accept once
(?n . n) (?\177 . n) ; `n' or DEL skips once
(?! . yes) ; `!' accepts rest
- (?q. no) (?\e . no) ; `q' or ESC skips rest
+ (?q . no) (?\e . no) ; `q' or ESC skips rest
;; None of these keys quit - use C-g for that.
))