]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-do-copy-regexp): Doc fix.
authorKarl Heuer <kwzh@gnu.org>
Tue, 9 Mar 1999 03:09:39 +0000 (03:09 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 9 Mar 1999 03:09:39 +0000 (03:09 +0000)
(dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.

lisp/dired-aux.el
lisp/dired.el

index ccf8548f47ef6fe191ce137bd403cf1c2312e913..8ef3c297a625217da150a7494bb4930bfcaaf272 100644 (file)
@@ -1382,7 +1382,7 @@ Normally, only the non-directory part of the file name is used and changed."
 ;;;###autoload
 (defun dired-do-copy-regexp (regexp newname &optional arg whole-path)
   "Copy all marked files containing REGEXP to NEWNAME.
-See function `dired-rename-regexp' for more info."
+See function `dired-do-rename-regexp' for more info."
   (interactive (dired-mark-read-regexp "Copy"))
   (dired-do-create-files-regexp
    (function dired-copy-file)
@@ -1392,7 +1392,7 @@ See function `dired-rename-regexp' for more info."
 ;;;###autoload
 (defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path)
   "Hardlink all marked files containing REGEXP to NEWNAME.
-See function `dired-rename-regexp' for more info."
+See function `dired-do-rename-regexp' for more info."
   (interactive (dired-mark-read-regexp "HardLink"))
   (dired-do-create-files-regexp
    (function add-name-to-file)
@@ -1401,7 +1401,7 @@ See function `dired-rename-regexp' for more info."
 ;;;###autoload
 (defun dired-do-symlink-regexp (regexp newname &optional arg whole-path)
   "Symlink all marked files containing REGEXP to NEWNAME.
-See function `dired-rename-regexp' for more info."
+See function `dired-do-rename-regexp' for more info."
   (interactive (dired-mark-read-regexp "SymLink"))
   (dired-do-create-files-regexp
    (function make-symbolic-link)
index 886a4945da6b5154f098c4b90df7712c2115e6fc..c493c1598baf0522456fb6b4443a375d5c348fa5 100644 (file)
@@ -2601,17 +2601,17 @@ With a zero prefix arg, renaming by regexp affects the complete
 
 (autoload 'dired-do-copy-regexp "dired-aux"
   "Copy all marked files containing REGEXP to NEWNAME.
-See function `dired-rename-regexp' for more info."
+See function `dired-do-rename-regexp' for more info."
   t)
 
 (autoload 'dired-do-hardlink-regexp "dired-aux"
   "Hardlink all marked files containing REGEXP to NEWNAME.
-See function `dired-rename-regexp' for more info."
+See function `dired-do-rename-regexp' for more info."
   t)
 
 (autoload 'dired-do-symlink-regexp "dired-aux"
   "Symlink all marked files containing REGEXP to NEWNAME.
-See function `dired-rename-regexp' for more info."
+See function `dired-do-rename-regexp' for more info."
   t)
 
 (autoload 'dired-upcase "dired-aux"