Mercurial > emacs
changeset 17199:91cf1da75ccd
Allow a dired-no-confirm of t
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Thu, 20 Mar 1997 12:39:57 +0000 |
parents | 471ce207330c |
children | 9438563a5151 |
files | lisp/dired-aux.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)))))