aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond2014-01-12 10:37:23 -0500
committerEric S. Raymond2014-01-12 10:37:23 -0500
commitff7210fef52a3ced9ea517c8326164b241cc148b (patch)
treef46b9e58a2e9f212684b738b50e69197760ac008
parentc5eb43237d108a7d75bb9920b3b04d81c2089a92 (diff)
downloademacs-ff7210fef52a3ced9ea517c8326164b241cc148b.tar.gz
emacs-ff7210fef52a3ced9ea517c8326164b241cc148b.zip
Remove more references unnecessarily specific to VCS.
-rw-r--r--ChangeLog3
-rw-r--r--doc/misc/efaq.texi2
-rw-r--r--etc/CONTRIBUTE11
-rw-r--r--lisp/mh-e/mh-acros.el12
4 files changed, 15 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index 98681e9c705..9b48d2039a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
12014-01-12 Eric S. Raymond <esr@thyrsus.com> 12014-01-12 Eric S. Raymond <esr@thyrsus.com>
2 2
3 * doc/misc/efaq.texi, etc/CONTRIBUTE, lisp/mh-e/mh-acros.el:
4 Remove more references unnecessarily specific to VCS.
5
3 * Makefile, src/Makefile, etc/PROBLEMS: Remove broken VCSWITNESS 6 * Makefile, src/Makefile, etc/PROBLEMS: Remove broken VCSWITNESS
4 code, and explain the problem. 7 code, and explain the problem.
5 8
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi
index c54423e887e..f17570fbe23 100644
--- a/doc/misc/efaq.texi
+++ b/doc/misc/efaq.texi
@@ -978,7 +978,6 @@ conventions}).
978@cindex Latest version of Emacs 978@cindex Latest version of Emacs
979@cindex Development, Emacs 979@cindex Development, Emacs
980@cindex Repository, Emacs 980@cindex Repository, Emacs
981@cindex Bazaar repository, Emacs
982 981
983Emacs @value{EMACSVER} is the current version as of this writing. A version 982Emacs @value{EMACSVER} is the current version as of this writing. A version
984number with two components (e.g., @samp{22.1}) indicates a released 983number with two components (e.g., @samp{22.1}) indicates a released
@@ -989,7 +988,6 @@ Emacs is under active development, hosted at
989@uref{http://savannah.gnu.org/projects/emacs/, Savannah}. The source 988@uref{http://savannah.gnu.org/projects/emacs/, Savannah}. The source
990code can be retrieved anonymously following the 989code can be retrieved anonymously following the
991@uref{http://savannah.gnu.org/bzr/?group=emacs, instructions}. 990@uref{http://savannah.gnu.org/bzr/?group=emacs, instructions}.
992The repository is GNU Bazaar.
993 991
994Because Emacs undergoes many changes before a release, the version 992Because Emacs undergoes many changes before a release, the version
995number of a development version is not especially meaningful. It is 993number of a development version is not especially meaningful. It is
diff --git a/etc/CONTRIBUTE b/etc/CONTRIBUTE
index cba833cf584..de42a15bb5c 100644
--- a/etc/CONTRIBUTE
+++ b/etc/CONTRIBUTE
@@ -71,11 +71,12 @@ patches) over all your contributions.
71 71
72* Getting the Source Code 72* Getting the Source Code
73 73
74The latest version of Emacs can be downloaded using Bazaar from the 74The latest version of Emacs can be fetched from the version-control
75Savannah web site. It is important to write your patch based on the 75repository on the Savannah web site. It is important to write your
76latest version. If you start from an older version, your patch may be 76patch based on the latest version. If you start from an older
77outdated (so that maintainers will have a hard time applying it), or 77version, your patch may be outdated (so that maintainers will have a
78changes in Emacs may have made your patch unnecessary. 78hard time applying it), or changes in Emacs may have made your patch
79unnecessary.
79 80
80After you have downloaded the repository source, you should read the file 81After you have downloaded the repository source, you should read the file
81INSTALL.REPO for build instructions (they differ to some extent from a 82INSTALL.REPO for build instructions (they differ to some extent from a
diff --git a/lisp/mh-e/mh-acros.el b/lisp/mh-e/mh-acros.el
index 7abd16bd832..6e34559c6c7 100644
--- a/lisp/mh-e/mh-acros.el
+++ b/lisp/mh-e/mh-acros.el
@@ -25,16 +25,16 @@
25;;; Commentary: 25;;; Commentary:
26 26
27;; This file contains all macros that are used in more than one file. 27;; This file contains all macros that are used in more than one file.
28;; If you run "make recompile" in Bazaar Emacs and see the message 28;; If you run "make recompile" in the Emacs repository and see the message
29;; "Source is newer than compiled," it is a sign that macro probably 29;; "Source is newer than compiled," it is a sign that macro probably
30;; needs to be moved here. 30;; needs to be moved here.
31 31
32;; Historically, it was so named with a silent "m" so that it would be 32;; Historically, it was so named with a silent "m" so that it would be
33;; compiled first. Otherwise, "make recompile" in Bazaar Emacs would use 33;; compiled first. Otherwise, "make recompile" in the Emacs repository
34;; compiled files with stale macro definitions. Later, no-byte-compile 34;; would use compiled files with stale macro definitions. Later,
35;; was added to the Local Variables section to avoid this problem and 35;; no-byte-compile was added to the Local Variables section to avoid
36;; because it's pointless to compile a file full of macros. But we 36;; this problem and because it's pointless to compile a file full of
37;; kept the name. 37;; macros. But we kept the name.
38 38
39;;; Change Log: 39;;; Change Log:
40 40