]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-query-alist): Fix use of character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:56:30 +0000 (09:56 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:56:30 +0000 (09:56 +0000)
lisp/dired-aux.el

index ca6f12e0fc75d498e10cb75e9a44f7f6a665cdc4..5bba250b67bb8d8a77a4b53d855be34971dcc502 100644 (file)
@@ -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.
     ))