# HG changeset patch # User Juanma Barranquero # Date 1045216590 0 # Node ID 270f35912a3b5880759ba6a0c183d5a2ddd51fa9 # Parent e53004435c0d061b935a10d10440596ceb02ab60 (dired-query-alist): Fix use of character constant. diff -r e53004435c0d -r 270f35912a3b lisp/dired-aux.el --- 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. ))