aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorEli Zaretskii2010-02-20 05:25:57 -0500
committerEli Zaretskii2010-02-20 05:25:57 -0500
commitd77fbdad04a1e3f8e4fa1038508379a5f5b8e67e (patch)
treed20e47abe63806acbc519454e597ab7dc6ced017 /admin
parentae9784892b7c9005b792b026d466af105bcb655f (diff)
parent0f00e9485d96c308b126553bd1b90ce4e64f1a1d (diff)
downloademacs-d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e.tar.gz
emacs-d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e.zip
Merge from mainline.
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog4
-rw-r--r--admin/README10
-rw-r--r--admin/notes/commits8
-rwxr-xr-xadmin/quick-install-emacs2
4 files changed, 16 insertions, 8 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index a43dbe931f0..da7ef59e8e6 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,7 @@
12010-02-14 Juanma Barranquero <lekktu@gmail.com>
2
3 * quick-install-emacs (PRUNED): Fix typo in message.
4
12010-01-20 Glenn Morris <rgm@gnu.org> 52010-01-20 Glenn Morris <rgm@gnu.org>
2 6
3 * revdiff: Remove file that only works with CVS, and isn't really 7 * revdiff: Remove file that only works with CVS, and isn't really
diff --git a/admin/README b/admin/README
index d35ffebc61b..694f206baaf 100644
--- a/admin/README
+++ b/admin/README
@@ -1,5 +1,5 @@
1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
2 Free Software Foundation, Inc. 2 2010 Free Software Foundation, Inc.
3See the end of the file for license conditions. 3See the end of the file for license conditions.
4 4
5 5
@@ -44,7 +44,7 @@ Build Emacs in various ways.
44 44
45Install emacs quickly (`incrementally'). 45Install emacs quickly (`incrementally').
46 46
47** alloc-color.c 47** alloc-colors.c
48 48
49A utility program that allocates a given number of colors on X. Can 49A utility program that allocates a given number of colors on X. Can
50be used to debug Emacs with dense colormaps (PseudoColor). 50be used to debug Emacs with dense colormaps (PseudoColor).
@@ -61,10 +61,6 @@ Tests for custom types and load problems.
61 61
62Show files added/removed between two tar files. 62Show files added/removed between two tar files.
63 63
64** revdiff
65
66Get CVS diffs of files.
67
68 64
69Brief description of sub-directories: 65Brief description of sub-directories:
70 66
diff --git a/admin/notes/commits b/admin/notes/commits
index 2896328c664..f37c3e020be 100644
--- a/admin/notes/commits
+++ b/admin/notes/commits
@@ -1,10 +1,17 @@
1HOW TO COMMIT CHANGES TO EMACS 1HOW TO COMMIT CHANGES TO EMACS
2 2
3Most of these points are from:
4
3http://lists.gnu.org/archive/html/emacs-devel/2009-03/msg00555.html 5http://lists.gnu.org/archive/html/emacs-devel/2009-03/msg00555.html
4From: Miles Bader 6From: Miles Bader
5Subject: commit style redux 7Subject: commit style redux
6Date: Tue, 31 Mar 2009 12:21:20 +0900 8Date: Tue, 31 Mar 2009 12:21:20 +0900
7 9
10(0) Each commit should correspond to a single change (whether spread
11 over multiple files or not). Do not mix different changes in the
12 same commit (eg adding a feature in one file, fixing a bug in
13 another should be two commits, not one).
14
8(1) Commit all changed files at once with a single log message (which 15(1) Commit all changed files at once with a single log message (which
9 in CVS will result in an identical log message for all committed 16 in CVS will result in an identical log message for all committed
10 files), not one-by-one. This is pretty easy using vc-dir now. 17 files), not one-by-one. This is pretty easy using vc-dir now.
@@ -41,6 +48,7 @@ Date: Tue, 31 Mar 2009 12:21:20 +0900
41 48
42Followup discussion: 49Followup discussion:
43http://lists.gnu.org/archive/html/emacs-devel/2010-01/msg00897.html 50http://lists.gnu.org/archive/html/emacs-devel/2010-01/msg00897.html
51http://lists.gnu.org/archive/html/emacs-devel/2010-02/msg00401.html
44 52
45 53
46PREVIOUS GUIDELINES FOR CVS 54PREVIOUS GUIDELINES FOR CVS
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs
index 5e862812c85..2fda74b0832 100755
--- a/admin/quick-install-emacs
+++ b/admin/quick-install-emacs
@@ -276,7 +276,7 @@ for SUBDIR in lisp leim etc lib-src info; do
276 if [ -d $DST/$DIR ]; then 276 if [ -d $DST/$DIR ]; then
277 echo Directory $DST/$DIR exists 277 echo Directory $DST/$DIR exists
278 else 278 else
279 echo Directory $DST/$DIR non-existant 279 echo Directory $DST/$DIR non-existent
280 if [ "`echo $DIR | egrep -v "$AVOID_PAT"`" ]; then 280 if [ "`echo $DIR | egrep -v "$AVOID_PAT"`" ]; then
281 maybe_mkdir $DST/$DIR 281 maybe_mkdir $DST/$DIR
282 fi 282 fi