aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-03-09 03:09:39 +0000
committerKarl Heuer1999-03-09 03:09:39 +0000
commit99c364e4c17d53070542ebd79d46da2ad122c687 (patch)
treeb0e7c4bbffff676f00533f5722a336c09e1786ac
parent067427f540d72ea332e5c7a528978f31601c845b (diff)
downloademacs-99c364e4c17d53070542ebd79d46da2ad122c687.tar.gz
emacs-99c364e4c17d53070542ebd79d46da2ad122c687.zip
(dired-do-copy-regexp): Doc fix.
(dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
-rw-r--r--lisp/dired-aux.el6
-rw-r--r--lisp/dired.el6
2 files changed, 6 insertions, 6 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."
1382;;;###autoload 1382;;;###autoload
1383(defun dired-do-copy-regexp (regexp newname &optional arg whole-path) 1383(defun dired-do-copy-regexp (regexp newname &optional arg whole-path)
1384 "Copy all marked files containing REGEXP to NEWNAME. 1384 "Copy all marked files containing REGEXP to NEWNAME.
1385See function `dired-rename-regexp' for more info." 1385See function `dired-do-rename-regexp' for more info."
1386 (interactive (dired-mark-read-regexp "Copy")) 1386 (interactive (dired-mark-read-regexp "Copy"))
1387 (dired-do-create-files-regexp 1387 (dired-do-create-files-regexp
1388 (function dired-copy-file) 1388 (function dired-copy-file)
@@ -1392,7 +1392,7 @@ See function `dired-rename-regexp' for more info."
1392;;;###autoload 1392;;;###autoload
1393(defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path) 1393(defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path)
1394 "Hardlink all marked files containing REGEXP to NEWNAME. 1394 "Hardlink all marked files containing REGEXP to NEWNAME.
1395See function `dired-rename-regexp' for more info." 1395See function `dired-do-rename-regexp' for more info."
1396 (interactive (dired-mark-read-regexp "HardLink")) 1396 (interactive (dired-mark-read-regexp "HardLink"))
1397 (dired-do-create-files-regexp 1397 (dired-do-create-files-regexp
1398 (function add-name-to-file) 1398 (function add-name-to-file)
@@ -1401,7 +1401,7 @@ See function `dired-rename-regexp' for more info."
1401;;;###autoload 1401;;;###autoload
1402(defun dired-do-symlink-regexp (regexp newname &optional arg whole-path) 1402(defun dired-do-symlink-regexp (regexp newname &optional arg whole-path)
1403 "Symlink all marked files containing REGEXP to NEWNAME. 1403 "Symlink all marked files containing REGEXP to NEWNAME.
1404See function `dired-rename-regexp' for more info." 1404See function `dired-do-rename-regexp' for more info."
1405 (interactive (dired-mark-read-regexp "SymLink")) 1405 (interactive (dired-mark-read-regexp "SymLink"))
1406 (dired-do-create-files-regexp 1406 (dired-do-create-files-regexp
1407 (function make-symbolic-link) 1407 (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
2601 2601
2602(autoload 'dired-do-copy-regexp "dired-aux" 2602(autoload 'dired-do-copy-regexp "dired-aux"
2603 "Copy all marked files containing REGEXP to NEWNAME. 2603 "Copy all marked files containing REGEXP to NEWNAME.
2604See function `dired-rename-regexp' for more info." 2604See function `dired-do-rename-regexp' for more info."
2605 t) 2605 t)
2606 2606
2607(autoload 'dired-do-hardlink-regexp "dired-aux" 2607(autoload 'dired-do-hardlink-regexp "dired-aux"
2608 "Hardlink all marked files containing REGEXP to NEWNAME. 2608 "Hardlink all marked files containing REGEXP to NEWNAME.
2609See function `dired-rename-regexp' for more info." 2609See function `dired-do-rename-regexp' for more info."
2610 t) 2610 t)
2611 2611
2612(autoload 'dired-do-symlink-regexp "dired-aux" 2612(autoload 'dired-do-symlink-regexp "dired-aux"
2613 "Symlink all marked files containing REGEXP to NEWNAME. 2613 "Symlink all marked files containing REGEXP to NEWNAME.
2614See function `dired-rename-regexp' for more info." 2614See function `dired-do-rename-regexp' for more info."
2615 t) 2615 t)
2616 2616
2617(autoload 'dired-upcase "dired-aux" 2617(autoload 'dired-upcase "dired-aux"