diff options
| author | Richard M. Stallman | 1995-04-15 05:42:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-15 05:42:25 +0000 |
| commit | 5c0b696b45fced8f5f4440656923aa0c06259fe8 (patch) | |
| tree | 6850ec9d104259993aade47aadaa92a6ac45ce10 | |
| parent | 2527947a4185381a9a61ee94ca9f63ea9fabcbe6 (diff) | |
| download | emacs-5c0b696b45fced8f5f4440656923aa0c06259fe8.tar.gz emacs-5c0b696b45fced8f5f4440656923aa0c06259fe8.zip | |
(dired-do-search): Renamed from dired-do-tags-search.
(dired-do-query-replace): Renamed from dired-do-tags-query-replace.
| -rw-r--r-- | lisp/dired-aux.el | 8 |
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." | |||
| 1859 | ;; Functions for searching in tags style among marked files. | 1859 | ;; Functions for searching in tags style among marked files. |
| 1860 | 1860 | ||
| 1861 | ;;;###autoload | 1861 | ;;;###autoload |
| 1862 | (defun dired-do-tags-search (regexp) | 1862 | (defun dired-do-search (regexp) |
| 1863 | "Search through all marked files for a match for REGEXP. | 1863 | "Search through all marked files for a match for REGEXP. |
| 1864 | Stops when a match is found. | 1864 | Stops when a match is found. |
| 1865 | To continue searching for next match, use command \\[tags-loop-continue]." | 1865 | 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]." | |||
| 1867 | (tags-search regexp '(dired-get-marked-files))) | 1867 | (tags-search regexp '(dired-get-marked-files))) |
| 1868 | 1868 | ||
| 1869 | ;;;###autoload | 1869 | ;;;###autoload |
| 1870 | (defun dired-do-tags-query-replace (from to &optional delimited) | 1870 | (defun dired-do-query-replace (from to &optional delimited) |
| 1871 | "Query-replace-regexp FROM with TO through all marked files. | 1871 | "Do `query-replace-regexp' of FROM with TO, on all marked files. |
| 1872 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 1872 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 1873 | If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace | 1873 | If you exit (\\[keyboard-quit] or ESC), you can resume the query replace |
| 1874 | with the command \\[tags-loop-continue]." | 1874 | with the command \\[tags-loop-continue]." |
| 1875 | (interactive | 1875 | (interactive |
| 1876 | "sQuery replace in marked files (regexp): \nsQuery replace %s by: \nP") | 1876 | "sQuery replace in marked files (regexp): \nsQuery replace %s by: \nP") |