aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii2018-07-21 19:11:32 +0300
committerEli Zaretskii2018-07-21 19:11:32 +0300
commitd12215324bb201d5f8c9e2b52c9b8d2abf30b1f4 (patch)
treefe76f52806a7dce0fea32f6c30cff57683216d33 /doc
parentf96fe57fb76df8e7282f266d42a0d471780e1d75 (diff)
downloademacs-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.texi10
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
1660your program and keep a change log. In these situations, you may not 1660your program and keep a change log. Many projects that use a VCS don't
1661want to keep a separate versioned change log file. If 1661keep a separate versioned change log file nowadays, so you may wish to
1662avoid 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
1663like @kbd{C-x 4 a} (@code{add-change-log-entry-other-window}) will 1664like @kbd{C-x 4 a} (@code{add-change-log-entry-other-window}) will
1664record changes in a suitably named temporary buffer instead of a file, 1665record changes in a suitably named temporary buffer instead of a file,
1665unless such a file already exists. 1666if such a file does not already exist.
1666 1667
1667In either case, you can type @kbd{C-c C-a} 1668Whether you have a change log file or use a temporary buffer for
1669change 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
1669relevant change log entries, if they exist. @xref{Log Buffer}. 1671relevant change log entries, if they exist. @xref{Log Buffer}.
1670 1672