From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:56:30 +0000 (+0000) Subject: (dired-query-alist): Fix use of character constant. X-Git-Tag: ttn-vms-21-2-B4~11200 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=573743d2f28af8383383ec5ac680b01eedd560e5;p=emacs.git (dired-query-alist): Fix use of character constant. --- 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. ))