summaryrefslogtreecommitdiff
path: root/lisp/dired-aux.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-04-15 05:42:25 +0000
committerRichard M. Stallman <rms@gnu.org>1995-04-15 05:42:25 +0000
commit11ea45152a4ae5271ff6294d631353ed938eda04 (patch)
tree3bc20b567444895448fd6097a4d77aae104190a1 /lisp/dired-aux.el
parente75c4513127a8502193f88c2c2ad9a6d1574a76f (diff)
downloademacs-11ea45152a4ae5271ff6294d631353ed938eda04.tar.gz
(dired-do-search): Renamed from dired-do-tags-search.
(dired-do-query-replace): Renamed from dired-do-tags-query-replace.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r--lisp/dired-aux.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index d1f8e87135e..9d93f9a541a 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -1859,7 +1859,7 @@ Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
;; 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 @@ To continue searching for next match, use command \\[tags-loop-continue]."
(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")