diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/maintaining.texi | 12 | ||||
| -rw-r--r-- | doc/lispref/keymaps.texi | 2 |
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} |
| 1982 | Perform a @code{query-replace-regexp} on each file in the selected tags table. | 1982 | Perform 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 |
| 1985 | Restart one of the last 2 commands above, from the current location of point. | 1985 | Restart 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 |
| 2018 | available (@pxref{Tags Tables}). | 2018 | available (@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 |
| 2022 | find all the rest. @kbd{M-x tags-loop-continue} resumes the | 2022 | find 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 |
| 2024 | the current buffer, followed by the remaining files of the tags table. | 2024 | the 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 | |||
| 2042 | single invocation of @kbd{M-x tags-query-replace}. But often it is | 2042 | single invocation of @kbd{M-x tags-query-replace}. But often it is |
| 2043 | useful to exit temporarily, which you can do with any input event that | 2043 | useful to exit temporarily, which you can do with any input event that |
| 2044 | has no special query replace meaning. You can resume the query | 2044 | has no special query replace meaning. You can resume the query |
| 2045 | replace subsequently by typing @kbd{M-x tags-loop-continue}; this | 2045 | replace subsequently by typing @kbd{M-x multifile-continue}; this |
| 2046 | command resumes the last tags search or replace command that you did. | 2046 | command resumes the last tags search or replace command that you did. |
| 2047 | For instance, to skip the rest of the current file, you can type | 2047 | For 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 |
| 2051 | searches than the @code{xref-find-definitions} family. The | 2051 | searches than the @code{xref-find-definitions} family. The |
| @@ -2077,7 +2077,7 @@ Display a list of all known identifiers matching @var{regexp}. | |||
| 2077 | Display a list of the identifiers defined in the program file | 2077 | Display 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 |
| 2081 | Visit files recorded in the selected tags table. | 2081 | Visit 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 |