aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2014-10-31 11:32:11 +0200
committerEli Zaretskii2014-10-31 11:32:11 +0200
commitb8ff3a9f989e50efdffa0548055f70fb872304ea (patch)
tree0077e5c9152dd6c86c434f6d842c9da74edb91a6
parent15d0d8d11bb015f76e83f8d43da7622eff12ff95 (diff)
downloademacs-b8ff3a9f989e50efdffa0548055f70fb872304ea.tar.gz
emacs-b8ff3a9f989e50efdffa0548055f70fb872304ea.zip
Minor fixes in the changes in preparation for git migration.
src/Makefile.in (repo-update): Fix a typo and slightly reword commentary. admin/notes/repo (Notes): Reword the stylistic guidance for commit log messages so that they are in line with Emacs development practices and style guidance.
-rw-r--r--admin/ChangeLog6
-rw-r--r--admin/notes/repo19
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/Makefile.in12
4 files changed, 25 insertions, 17 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 954574e7264..bd98be4ac72 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,9 @@
12014-10-31 Eli Zaretskii <eliz@gnu.org>
2
3 * notes/repo (Notes): Reword the stylistic guidance for commit log
4 messages so that they are in line with Emacs development practices
5 and style guidance.
6
12014-10-31 Eric S. Raymond <esr@thyrsus.com> 72014-10-31 Eric S. Raymond <esr@thyrsus.com>
2 8
3 * notes/bzr: Renamed to notes/repo, reorganixed to separate 9 * notes/bzr: Renamed to notes/repo, reorganixed to separate
diff --git a/admin/notes/repo b/admin/notes/repo
index 858674e6b87..9b5e6ca9417 100644
--- a/admin/notes/repo
+++ b/admin/notes/repo
@@ -5,18 +5,15 @@ NOTES ON COMMITTING TO EMACS'S REPOSITORY -*- outline -*-
5Commits should follow the conventions used in all modern distributed 5Commits should follow the conventions used in all modern distributed
6version-control systems. That is, they should consist of 6version-control systems. That is, they should consist of
7 7
8- A self-contained topic line no more than 75 chars long. 8- A self-contained topic line, preferably no more than 75 chars long.
9 9
10- If other content follows the topic line, there should be 10- If other content follows the topic line, there should be a blank
11 a blank line separating the two. 11 line separating the two.
12 12
13Try to keep your commits - and your commit comments - small. If 13- Follow the blank line with ChangeLog-like entries for the specific
14you feel an urge to put a bullet list in your commit comment, it's 14 changes you made, if any. (As long as Emacs maintains ChangeLog
15doing too many things at once. 15 files, just copy the entries you made in them to the commit message
16 16 after the blank line.)
17Yes, these directins are a departure from historical Emacs practice,
18but it helps modern log-viewing and summary tools work better so that
19other people can comprehend your code.
20 17
21* Commit to the right branch 18* Commit to the right branch
22 19
@@ -184,7 +181,7 @@ the trunk at all, use `bzr resolve path/to/file --take-this' to keep the
184trunk version. Prior to bzr 2.2.3, this may fail. You can just 181trunk version. Prior to bzr 2.2.3, this may fail. You can just
185delete the .OTHER etc files by hand and use bzr resolve path/to/file. 182delete the .OTHER etc files by hand and use bzr resolve path/to/file.
186 183
187* Sanity-checking branch merges 184* Sanity-checking branch merges
188 185
189Inspect the ChangeLog entries (e.g. in case too many entries have been 186Inspect the ChangeLog entries (e.g. in case too many entries have been
190included or whitespace between entries needs fixing). bzrmerge tries 187included or whitespace between entries needs fixing). bzrmerge tries
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc5fae78970..b4dc92d442e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12014-10-31 Eli Zaretskii <eliz@gnu.org>
2
3 * Makefile.in (repo-update): Fix a typo and slightly reword
4 commentary.
5
12014-10-31 Glenn Morris <rgm@gnu.org> 62014-10-31 Glenn Morris <rgm@gnu.org>
2 7
3 * version.el (emacs-bzr-version, emacs-bzr-get-version): 8 * version.el (emacs-bzr-version, emacs-bzr-get-version):
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index d90ced0cdcb..0f2c38b08bf 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -211,12 +211,12 @@ update-subdirs: doit
211# Some modes of make-dist use this. 211# Some modes of make-dist use this.
212updates: update-subdirs autoloads finder-data custom-deps 212updates: update-subdirs autoloads finder-data custom-deps
213 213
214# This is useful after a repostiory fetch; but it doesn't do anything that a 214# This is useful after updating from the repository; but it doesn't do
215# plain "make" at top-level doesn't. 215# anything that a plain "make" at top-level doesn't. The only
216# The only difference between this and this directory's "all" rule 216# difference between this and this directory's "all" rule is that this
217# is that this runs "autoloads" as well (because it uses "compile" 217# runs "autoloads" as well (because it uses "compile" rather than
218# rather than "compile-main"). In a bootstrap, $(lisp) in src/Makefile 218# "compile-main"). In a bootstrap, $(lisp) in src/Makefile triggers
219# triggers this directory's autoloads rule. 219# this directory's autoloads rule.
220repo-update: compile finder-data custom-deps 220repo-update: compile finder-data custom-deps
221 221
222# Update the AUTHORS file. 222# Update the AUTHORS file.