diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 10:44:23 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 10:44:23 +0000 |
commit | 52a17143257cf296770e1f77916f28024692cc28 (patch) | |
tree | 0aab3da89d69286afebd580885bcffdbed299e03 /lisp/dired-aux.el | |
parent | 768656652ff7f4055700ed9f23c4b4a9e64176ba (diff) | |
download | emacs-52a17143257cf296770e1f77916f28024692cc28.tar.gz |
(dired-create-files): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index f904238c8fa..e0749f375ae 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1330,7 +1330,7 @@ Special value `always' suppresses confirmation." skipped (success-count 0) (total (length fn-list))) (let (to overwrite-query overwrite-backup-query) ; for dired-handle-overwrite - (mapcar + (mapc (function (lambda (from) (setq to (funcall name-constructor from)) |