diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-03-09 03:09:39 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-03-09 03:09:39 +0000 |
commit | 99c364e4c17d53070542ebd79d46da2ad122c687 (patch) | |
tree | b0e7c4bbffff676f00533f5722a336c09e1786ac /lisp/dired-aux.el | |
parent | 067427f540d72ea332e5c7a528978f31601c845b (diff) | |
download | emacs-99c364e4c17d53070542ebd79d46da2ad122c687.tar.gz |
(dired-do-copy-regexp): Doc fix.
(dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index ccf8548f47e..8ef3c297a62 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -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) |