]> git.eshelyaron.com Git - emacs.git/commitdiff
Allow a dired-no-confirm of t
authorSimon Marshall <simon@gnu.org>
Thu, 20 Mar 1997 12:39:57 +0000 (12:39 +0000)
committerSimon Marshall <simon@gnu.org>
Thu, 20 Mar 1997 12:39:57 +0000 (12:39 +0000)
lisp/dired-aux.el

index 6c07d430df4f37fe7eb0b42c5bee31b778319b17..5d382ed82721074007afdad71dea2d7836d9f5dc 100644 (file)
@@ -592,7 +592,8 @@ Otherwise, the rule is a compression rule, and compression is done with gzip.")
   ;; 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)))))