diff options
| author | Eli Zaretskii | 2018-07-21 19:11:32 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-07-21 19:11:32 +0300 |
| commit | d12215324bb201d5f8c9e2b52c9b8d2abf30b1f4 (patch) | |
| tree | fe76f52806a7dce0fea32f6c30cff57683216d33 /doc | |
| parent | f96fe57fb76df8e7282f266d42a0d471780e1d75 (diff) | |
| download | emacs-d12215324bb201d5f8c9e2b52c9b8d2abf30b1f4.tar.gz emacs-d12215324bb201d5f8c9e2b52c9b8d2abf30b1f4.zip | |
Minor rewording of last change
* lisp/vc/add-log.el (add-log-dont-create-changelog-file)
(add-log--pseudo-changelog-buffer-name)
(add-log--changelog-buffer-p, add-change-log-entry): Doc fixes.
* etc/NEWS: Improve wording of last change.
* doc/emacs/maintaining.texi (Change Log Commands): Improve
wording of last change.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/maintaining.texi | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index c59978ebbe2..b31cacf998a 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi | |||
| @@ -1657,14 +1657,16 @@ ordering of entries. | |||
| 1657 | 1657 | ||
| 1658 | @vindex add-log-dont-create-changelog-file | 1658 | @vindex add-log-dont-create-changelog-file |
| 1659 | Version control systems are another way to keep track of changes in | 1659 | Version control systems are another way to keep track of changes in |
| 1660 | your program and keep a change log. In these situations, you may not | 1660 | your program and keep a change log. Many projects that use a VCS don't |
| 1661 | want to keep a separate versioned change log file. If | 1661 | keep a separate versioned change log file nowadays, so you may wish to |
| 1662 | avoid having such a file in the repository. If the value of | ||
| 1662 | @code{add-log-dont-create-changelog-file} is non-@code{nil}, commands | 1663 | @code{add-log-dont-create-changelog-file} is non-@code{nil}, commands |
| 1663 | like @kbd{C-x 4 a} (@code{add-change-log-entry-other-window}) will | 1664 | like @kbd{C-x 4 a} (@code{add-change-log-entry-other-window}) will |
| 1664 | record changes in a suitably named temporary buffer instead of a file, | 1665 | record changes in a suitably named temporary buffer instead of a file, |
| 1665 | unless such a file already exists. | 1666 | if such a file does not already exist. |
| 1666 | 1667 | ||
| 1667 | In either case, you can type @kbd{C-c C-a} | 1668 | Whether you have a change log file or use a temporary buffer for |
| 1669 | change logs, you can type @kbd{C-c C-a} | ||
| 1668 | (@code{log-edit-insert-changelog}) in the VC Log buffer to insert the | 1670 | (@code{log-edit-insert-changelog}) in the VC Log buffer to insert the |
| 1669 | relevant change log entries, if they exist. @xref{Log Buffer}. | 1671 | relevant change log entries, if they exist. @xref{Log Buffer}. |
| 1670 | 1672 | ||