diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:56:30 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:56:30 +0000 |
commit | 573743d2f28af8383383ec5ac680b01eedd560e5 (patch) | |
tree | 200b895b6130ea1d6e391dc3bdd1a358e2091f4c | |
parent | 572e07532face80b82d92ddc55effeb029827cca (diff) | |
download | emacs-573743d2f28af8383383ec5ac680b01eedd560e5.tar.gz |
(dired-query-alist): Fix use of character constant.
-rw-r--r-- | lisp/dired-aux.el | 2 |
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. )) |