diff options
| author | Lars Ingebrigtsen | 2019-08-01 21:21:59 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-08-01 21:21:59 +0200 |
| commit | fe939b36f901645e976bf016d8766c3a1300e45c (patch) | |
| tree | 880351e8848cbda66de934ed1a91aff9606d8f94 | |
| parent | 10ffdabc372612fd60725cf092739cc1a6d4bdac (diff) | |
| download | emacs-fe939b36f901645e976bf016d8766c3a1300e45c.tar.gz emacs-fe939b36f901645e976bf016d8766c3a1300e45c.zip | |
Fix reference to `tags-loop-continue' in doc string
* lisp/dired-aux.el (dired-do-search): Refer to
`fileloop-continue' instead of the obsolete `tags-loop-continue'
(bug#21475).
| -rw-r--r-- | lisp/dired-aux.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 30a941c7bb6..20656a8fccd 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -2873,7 +2873,7 @@ is part of a file name (i.e., has the text property `dired-filename')." | |||
| 2873 | (defun dired-do-search (regexp) | 2873 | (defun dired-do-search (regexp) |
| 2874 | "Search through all marked files for a match for REGEXP. | 2874 | "Search through all marked files for a match for REGEXP. |
| 2875 | Stops when a match is found. | 2875 | Stops when a match is found. |
| 2876 | To continue searching for next match, use command \\[tags-loop-continue]." | 2876 | To continue searching for next match, use command \\[fileloop-continue]." |
| 2877 | (interactive "sSearch marked files (regexp): ") | 2877 | (interactive "sSearch marked files (regexp): ") |
| 2878 | (fileloop-initialize-search | 2878 | (fileloop-initialize-search |
| 2879 | regexp | 2879 | regexp |