1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(dired-do-copy-regexp): Doc fix.

(dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
This commit is contained in:
Karl Heuer 1999-03-09 03:09:39 +00:00
parent 067427f540
commit 99c364e4c1
2 changed files with 6 additions and 6 deletions

View 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)

View 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"