aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-17 09:13:39 +0000
committerGerd Moellmann2000-02-17 09:13:39 +0000
commitea1856442df7a3407e03b97d56b791acfae5edd9 (patch)
tree62fdc2193fd775a762c5e08e032dc3034307b8ec
parent4a09dee02e347478af9bd303808be810f57210a8 (diff)
downloademacs-ea1856442df7a3407e03b97d56b791acfae5edd9.tar.gz
emacs-ea1856442df7a3407e03b97d56b791acfae5edd9.zip
(dired-do-copy): Remove spurios character.`n'
within the code.
-rw-r--r--lisp/dired-aux.el8
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,
1320and new copies of these files are made in that directory 1320and new copies of these files are made in that directory
1321with the same names that the files currently have." 1321with the same names that the files currently have."
1322 (interactive "P") 1322 (interactive "P")
1323n (let ((dired-recursive-copies dired-recursive-copies)) 1323 (let ((dired-recursive-copies dired-recursive-copies))
1324 (dired-do-create-files 'copy (function dired-copy-file) 1324 (dired-do-create-files 'copy (function dired-copy-file)
1325 (if dired-copy-preserve-time "Copy [-p]" "Copy") 1325 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1326 arg dired-keep-marker-copy 1326 arg dired-keep-marker-copy
1327 nil dired-copy-how-to-fn))) 1327 nil dired-copy-how-to-fn)))
1328 1328
1329;;;###autoload 1329;;;###autoload
1330(defun dired-do-symlink (&optional arg) 1330(defun dired-do-symlink (&optional arg)