]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-do-create-files, dired-do-copy)
authorEli Zaretskii <eliz@gnu.org>
Fri, 27 Apr 2001 15:40:29 +0000 (15:40 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 27 Apr 2001 15:40:29 +0000 (15:40 +0000)
(dired-do-symlink, dired-do-hardlink, dired-do-rename): Mention
dired-dwim-target in the doc string.

lisp/ChangeLog
lisp/dired-aux.el

index 6905f0ec8ecd8c2d09f9ac4193fa849436f9f7dd..dd809ad19e4bda67634bc9289de9d888b0a7b396 100644 (file)
@@ -1,3 +1,9 @@
+2001-04-27  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * dired-aux.el (dired-do-create-files, dired-do-copy)
+       (dired-do-symlink, dired-do-hardlink, dired-do-rename): Mention
+       dired-dwim-target in the doc string.
+
 2001-04-28  Miles Bader  <miles@gnu.org>
 
        * dabbrev.el (dabbrev--ignore-buffer-p): New function.
index c4dcae6e4c7ff442118c6f346729c84d0ff0ed12..4b2fecceade0d4b5d7ae815c236eac43aeb178d1 100644 (file)
@@ -1190,7 +1190,8 @@ ESC or `q' to not overwrite any of the remaining files,
   "Create a new file for each marked file.
 Prompts user for target, which is a directory in which to create
   the new files.  Target may be a plain file if only one marked
-  file exists.
+  file exists.  The way the default for the target directory is
+  computed depends on the value of `dired-dwim-target-directory'.
 OP-SYMBOL is the symbol for the operation.  Function `dired-mark-pop-up'
   will determine whether pop-ups are appropriate for this OP-SYMBOL.
 FILE-CREATOR and OPERATION as in `dired-create-files'.
@@ -1342,7 +1343,9 @@ This normally preserves the last-modified date when copying.
 When operating on just the current file, you specify the new name.
 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."
+with the same names that the files currently have.  The default
+suggested for the target directory depends on the value of
+`dired-dwim-target', which see."
   (interactive "P")
   (let ((dired-recursive-copies dired-recursive-copies))
     (dired-do-create-files 'copy (function dired-copy-file)
@@ -1356,7 +1359,9 @@ with the same names that the files currently have."
 When operating on just the current file, you specify the new name.
 When operating on multiple or marked files, you specify a directory
 and new symbolic links are made in that directory
-with the same names that the files currently have."
+with the same names that the files currently have.  The default
+suggested for the target directory depends on the value of
+`dired-dwim-target', which see."
   (interactive "P")
   (dired-do-create-files 'symlink (function make-symbolic-link)
                           "Symlink" arg dired-keep-marker-symlink))
@@ -1367,7 +1372,9 @@ with the same names that the files currently have."
 When operating on just the current file, you specify the new name.
 When operating on multiple or marked files, you specify a directory
 and new hard links are made in that directory
-with the same names that the files currently have."
+with the same names that the files currently have.  The default
+suggested for the target directory depends on the value of
+`dired-dwim-target', which see."
   (interactive "P")
   (dired-do-create-files 'hardlink (function add-name-to-file)
                           "Hardlink" arg dired-keep-marker-hardlink))
@@ -1376,7 +1383,9 @@ with the same names that the files currently have."
 (defun dired-do-rename (&optional arg)
   "Rename current file or all marked (or next ARG) files.
 When renaming just the current file, you specify the new name.
-When renaming multiple or marked files, you specify a directory."
+When renaming multiple or marked files, you specify a directory.
+The default suggested for the target directory depends on the value
+of `dired-dwim-target', which see."
   (interactive "P")
   (dired-do-create-files 'move (function dired-rename-file)
                         "Move" arg dired-keep-marker-rename "Rename"))