# HG changeset patch # User Simon Marshall # Date 858861597 0 # Node ID 91cf1da75ccded1dfa768ec0520fcefee90c33c7 # Parent 471ce207330c48758ecee405a40c872b89173bae Allow a dired-no-confirm of t diff -r 471ce207330c -r 91cf1da75ccd lisp/dired-aux.el --- a/lisp/dired-aux.el Thu Mar 20 12:37:06 1997 +0000 +++ b/lisp/dired-aux.el Thu Mar 20 12:39:57 1997 +0000 @@ -592,7 +592,8 @@ ;; Confirmation consists in a y-or-n question with a file list ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'. ;; The files used are determined by ARG (as in dired-get-marked-files). - (or (memq op-symbol dired-no-confirm) + (or (eq dired-no-confirm t) + (memq op-symbol dired-no-confirm) (let ((files (dired-get-marked-files t arg)) (string (if (eq op-symbol 'compress) "Compress or uncompress" (capitalize (symbol-name op-symbol)))))