diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-02-17 09:13:39 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-02-17 09:13:39 +0000 |
commit | ea1856442df7a3407e03b97d56b791acfae5edd9 (patch) | |
tree | 62fdc2193fd775a762c5e08e032dc3034307b8ec /lisp/dired-aux.el | |
parent | 4a09dee02e347478af9bd303808be810f57210a8 (diff) | |
download | emacs-ea1856442df7a3407e03b97d56b791acfae5edd9.tar.gz |
(dired-do-copy): Remove spurios character.`n'
within the code.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 0dbe65007a8..77f06456c4c 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1320,11 +1320,11 @@ When operating on multiple or marked files, you specify a directory, and new copies of these files are made in that directory with the same names that the files currently have." (interactive "P") -n (let ((dired-recursive-copies dired-recursive-copies)) + (let ((dired-recursive-copies dired-recursive-copies)) (dired-do-create-files 'copy (function dired-copy-file) - (if dired-copy-preserve-time "Copy [-p]" "Copy") - arg dired-keep-marker-copy - nil dired-copy-how-to-fn))) + (if dired-copy-preserve-time "Copy [-p]" "Copy") + arg dired-keep-marker-copy + nil dired-copy-how-to-fn))) ;;;###autoload (defun dired-do-symlink (&optional arg) |