changeset 11458:43ce6ed860a6

(dired-do-search): Renamed from dired-do-tags-search. (dired-do-query-replace): Renamed from dired-do-tags-query-replace.
author Richard M. Stallman <rms@gnu.org>
date Sat, 15 Apr 1995 05:42:25 +0000
parents 2f308550bd61
children 2402288b8410
files lisp/dired-aux.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/dired-aux.el	Sat Apr 15 05:41:28 1995 +0000
+++ b/lisp/dired-aux.el	Sat Apr 15 05:42:25 1995 +0000
@@ -1859,7 +1859,7 @@
 ;; Functions for searching in tags style among marked files.
 
 ;;;###autoload
-(defun dired-do-tags-search (regexp)
+(defun dired-do-search (regexp)
   "Search through all marked files for a match for REGEXP.
 Stops when a match is found.
 To continue searching for next match, use command \\[tags-loop-continue]."
@@ -1867,10 +1867,10 @@
   (tags-search regexp '(dired-get-marked-files)))
 
 ;;;###autoload
-(defun dired-do-tags-query-replace (from to &optional delimited)
-  "Query-replace-regexp FROM with TO through all marked files.
+(defun dired-do-query-replace (from to &optional delimited)
+  "Do `query-replace-regexp' of FROM with TO, on all marked files.
 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
-If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
+If you exit (\\[keyboard-quit] or ESC), you can resume the query replace
 with the command \\[tags-loop-continue]."
   (interactive
    "sQuery replace in marked files (regexp): \nsQuery replace %s by: \nP")