changeset 49783:270f35912a3b

(dired-query-alist): Fix use of character constant.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 14 Feb 2003 09:56:30 +0000
parents e53004435c0d
children 48e671543e1e
files lisp/dired-aux.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/dired-aux.el	Fri Feb 14 07:02:13 2003 +0000
+++ b/lisp/dired-aux.el	Fri Feb 14 09:56:30 2003 +0000
@@ -677,7 +677,7 @@
   '((?\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.
     ))