aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStefan Monnier2018-09-22 11:47:40 -0400
committerStefan Monnier2018-09-22 11:47:40 -0400
commit596ccc087c8f844f81b075da643e5c554a8de9d6 (patch)
treea703cf1443853d03c3c5a871e8ffcbd894058fbe /doc
parent55ec674f5090f420c8982f5206e6566b5a664340 (diff)
downloademacs-596ccc087c8f844f81b075da643e5c554a8de9d6.tar.gz
emacs-596ccc087c8f844f81b075da643e5c554a8de9d6.zip
Complement to last commit
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/maintaining.texi12
-rw-r--r--doc/lispref/keymaps.texi2
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index 5c3017a3883..c7eea90b92f 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -1981,7 +1981,7 @@ table.
1981@item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET} 1981@item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
1982Perform a @code{query-replace-regexp} on each file in the selected tags table. 1982Perform a @code{query-replace-regexp} on each file in the selected tags table.
1983 1983
1984@item M-x tags-loop-continue 1984@item M-x multifile-continue
1985Restart one of the last 2 commands above, from the current location of point. 1985Restart one of the last 2 commands above, from the current location of point.
1986@end table 1986@end table
1987 1987
@@ -2017,9 +2017,9 @@ you can follow its progress. As soon as it finds an occurrence,
2017@code{tags-search} returns. This command requires tags tables to be 2017@code{tags-search} returns. This command requires tags tables to be
2018available (@pxref{Tags Tables}). 2018available (@pxref{Tags Tables}).
2019 2019
2020@findex tags-loop-continue 2020@findex multifile-continue
2021 Having found one match with @code{tags-search}, you probably want to 2021 Having found one match with @code{tags-search}, you probably want to
2022find all the rest. @kbd{M-x tags-loop-continue} resumes the 2022find all the rest. @kbd{M-x multifile-continue} resumes the
2023@code{tags-search}, finding one more match. This searches the rest of 2023@code{tags-search}, finding one more match. This searches the rest of
2024the current buffer, followed by the remaining files of the tags table. 2024the current buffer, followed by the remaining files of the tags table.
2025 2025
@@ -2042,10 +2042,10 @@ default is to use the same setting as the value of
2042single invocation of @kbd{M-x tags-query-replace}. But often it is 2042single invocation of @kbd{M-x tags-query-replace}. But often it is
2043useful to exit temporarily, which you can do with any input event that 2043useful to exit temporarily, which you can do with any input event that
2044has no special query replace meaning. You can resume the query 2044has no special query replace meaning. You can resume the query
2045replace subsequently by typing @kbd{M-x tags-loop-continue}; this 2045replace subsequently by typing @kbd{M-x multifile-continue}; this
2046command resumes the last tags search or replace command that you did. 2046command resumes the last tags search or replace command that you did.
2047For instance, to skip the rest of the current file, you can type 2047For instance, to skip the rest of the current file, you can type
2048@w{@kbd{M-> M-x tags-loop-continue}}. 2048@w{@kbd{M-> M-x multifile-continue}}.
2049 2049
2050 Note that the commands described above carry out much broader 2050 Note that the commands described above carry out much broader
2051searches than the @code{xref-find-definitions} family. The 2051searches than the @code{xref-find-definitions} family. The
@@ -2077,7 +2077,7 @@ Display a list of all known identifiers matching @var{regexp}.
2077Display a list of the identifiers defined in the program file 2077Display a list of the identifiers defined in the program file
2078@var{file}. 2078@var{file}.
2079 2079
2080@item M-x next-file 2080@item M-x tags-next-file
2081Visit files recorded in the selected tags table. 2081Visit files recorded in the selected tags table.
2082@end table 2082@end table
2083 2083
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi
index 38e89c6cfdd..d9d213df15a 100644
--- a/doc/lispref/keymaps.texi
+++ b/doc/lispref/keymaps.texi
@@ -2443,7 +2443,7 @@ Next we define the menu items:
2443 2443
2444@smallexample 2444@smallexample
2445(define-key menu-bar-replace-menu [tags-repl-continue] 2445(define-key menu-bar-replace-menu [tags-repl-continue]
2446 '(menu-item "Continue Replace" tags-loop-continue 2446 '(menu-item "Continue Replace" multifile-continue
2447 :help "Continue last tags replace operation")) 2447 :help "Continue last tags replace operation"))
2448(define-key menu-bar-replace-menu [tags-repl] 2448(define-key menu-bar-replace-menu [tags-repl]
2449 '(menu-item "Replace in tagged files" tags-query-replace 2449 '(menu-item "Replace in tagged files" tags-query-replace