From: Karl Heuer Date: Tue, 9 Mar 1999 03:09:39 +0000 (+0000) Subject: (dired-do-copy-regexp): Doc fix. X-Git-Tag: emacs-20.4~493 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99c364e4c17d53070542ebd79d46da2ad122c687;p=emacs.git (dired-do-copy-regexp): Doc fix. (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix. --- 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) diff --git a/lisp/dired.el b/lisp/dired.el index 886a4945da6..c493c1598ba 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -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"