diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 14 | ||||
| -rw-r--r-- | doc/emacs/custom.texi | 2 | ||||
| -rw-r--r-- | doc/emacs/maintaining.texi | 9 | ||||
| -rw-r--r-- | doc/emacs/programs.texi | 1 |
4 files changed, 20 insertions, 6 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index fd1ace2e69d..e7add8acfa4 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2008-01-26 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * maintaining.texi (Tags): Delete redundant index entry. | ||
| 4 | |||
| 5 | 2008-01-26 Eli Zaretskii <eliz@gnu.org> | ||
| 6 | |||
| 7 | * programs.texi (Imenu): Move "@cindex tags" from here... | ||
| 8 | * maintaining.texi (Tags): ...to here. | ||
| 9 | |||
| 10 | 2008-01-23 Kevin Ryde <user42@zip.com.au> | ||
| 11 | |||
| 12 | * custom.texi (Mouse Buttons): Update elisp xref to "Click Events" on | ||
| 13 | click count. | ||
| 14 | |||
| 1 | 2008-01-21 Juanma Barranquero <lekktu@gmail.com> | 15 | 2008-01-21 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 16 | ||
| 3 | * entering.texi (Exiting): Fix typo. | 17 | * entering.texi (Exiting): Fix typo. |
diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi index 7836e8b7c39..6660b5e66ff 100644 --- a/doc/emacs/custom.texi +++ b/doc/emacs/custom.texi | |||
| @@ -1885,7 +1885,7 @@ twice. | |||
| 1885 | types; clicks beyond the third generate additional triple-click events. | 1885 | types; clicks beyond the third generate additional triple-click events. |
| 1886 | However, the full number of clicks is recorded in the event list, so | 1886 | However, the full number of clicks is recorded in the event list, so |
| 1887 | if you know Emacs Lisp you can distinguish if you really want to | 1887 | if you know Emacs Lisp you can distinguish if you really want to |
| 1888 | (@pxref{Accessing Events,,, elisp, The Emacs Lisp Reference Manual}). | 1888 | (@pxref{Click Events,,, elisp, The Emacs Lisp Reference Manual}). |
| 1889 | We don't recommend distinct meanings for more than three clicks, but | 1889 | We don't recommend distinct meanings for more than three clicks, but |
| 1890 | sometimes it is useful for subsequent clicks to cycle through the same | 1890 | sometimes it is useful for subsequent clicks to cycle through the same |
| 1891 | set of three meanings, so that four clicks are equivalent to one | 1891 | set of three meanings, so that four clicks are equivalent to one |
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index c82c4fd6f2c..7106a380d03 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi | |||
| @@ -130,7 +130,7 @@ Of course, you should substitute the proper years and copyright holder. | |||
| 130 | 130 | ||
| 131 | @node Tags | 131 | @node Tags |
| 132 | @section Tags Tables | 132 | @section Tags Tables |
| 133 | @cindex tags table | 133 | @cindex tag tables |
| 134 | 134 | ||
| 135 | A @dfn{tags table} is a description of how a multi-file program is | 135 | A @dfn{tags table} is a description of how a multi-file program is |
| 136 | broken up into files. It lists the names of the component files and the | 136 | broken up into files. It lists the names of the component files and the |
| @@ -796,9 +796,10 @@ default is to use the same setting as the value of | |||
| 796 | It is possible to get through all the files in the tags table with a | 796 | It is possible to get through all the files in the tags table with a |
| 797 | single invocation of @kbd{M-x tags-query-replace}. But often it is | 797 | single invocation of @kbd{M-x tags-query-replace}. But often it is |
| 798 | useful to exit temporarily, which you can do with any input event that | 798 | useful to exit temporarily, which you can do with any input event that |
| 799 | has no special query replace meaning. You can resume the query replace | 799 | has no special query replace meaning. You can resume the query |
| 800 | subsequently by typing @kbd{M-,}; this command resumes the last tags | 800 | replace subsequently by typing @kbd{M-,}; this command resumes the |
| 801 | search or replace command that you did. | 801 | last tags search or replace command that you did. For instance, to |
| 802 | skip the rest of the current file, you can type @kbd{M-> M-,}. | ||
| 802 | 803 | ||
| 803 | The commands in this section carry out much broader searches than the | 804 | The commands in this section carry out much broader searches than the |
| 804 | @code{find-tag} family. The @code{find-tag} commands search only for | 805 | @code{find-tag} family. The @code{find-tag} commands search only for |
diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi index b1c196ba077..9c12199b00c 100644 --- a/doc/emacs/programs.texi +++ b/doc/emacs/programs.texi | |||
| @@ -279,7 +279,6 @@ bindings for that purpose. | |||
| 279 | @subsection Imenu | 279 | @subsection Imenu |
| 280 | @cindex index of buffer definitions | 280 | @cindex index of buffer definitions |
| 281 | @cindex buffer definitions index | 281 | @cindex buffer definitions index |
| 282 | @cindex tags | ||
| 283 | 282 | ||
| 284 | The Imenu facility offers a way to find the major definitions in | 283 | The Imenu facility offers a way to find the major definitions in |
| 285 | a file by name. It is also useful in text formatter major modes, | 284 | a file by name. It is also useful in text formatter major modes, |