diff options
| author | Eli Zaretskii | 2010-02-20 05:25:57 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2010-02-20 05:25:57 -0500 |
| commit | d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e (patch) | |
| tree | d20e47abe63806acbc519454e597ab7dc6ced017 /admin | |
| parent | ae9784892b7c9005b792b026d466af105bcb655f (diff) | |
| parent | 0f00e9485d96c308b126553bd1b90ce4e64f1a1d (diff) | |
| download | emacs-d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e.tar.gz emacs-d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e.zip | |
Merge from mainline.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 4 | ||||
| -rw-r--r-- | admin/README | 10 | ||||
| -rw-r--r-- | admin/notes/commits | 8 | ||||
| -rwxr-xr-x | admin/quick-install-emacs | 2 |
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 @@ | |||
| 1 | 2010-02-14 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * quick-install-emacs (PRUNED): Fix typo in message. | ||
| 4 | |||
| 1 | 2010-01-20 Glenn Morris <rgm@gnu.org> | 5 | 2010-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 @@ | |||
| 1 | Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 | 1 | Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, |
| 2 | Free Software Foundation, Inc. | 2 | 2010 Free Software Foundation, Inc. |
| 3 | See the end of the file for license conditions. | 3 | See the end of the file for license conditions. |
| 4 | 4 | ||
| 5 | 5 | ||
| @@ -44,7 +44,7 @@ Build Emacs in various ways. | |||
| 44 | 44 | ||
| 45 | Install emacs quickly (`incrementally'). | 45 | Install emacs quickly (`incrementally'). |
| 46 | 46 | ||
| 47 | ** alloc-color.c | 47 | ** alloc-colors.c |
| 48 | 48 | ||
| 49 | A utility program that allocates a given number of colors on X. Can | 49 | A utility program that allocates a given number of colors on X. Can |
| 50 | be used to debug Emacs with dense colormaps (PseudoColor). | 50 | be used to debug Emacs with dense colormaps (PseudoColor). |
| @@ -61,10 +61,6 @@ Tests for custom types and load problems. | |||
| 61 | 61 | ||
| 62 | Show files added/removed between two tar files. | 62 | Show files added/removed between two tar files. |
| 63 | 63 | ||
| 64 | ** revdiff | ||
| 65 | |||
| 66 | Get CVS diffs of files. | ||
| 67 | |||
| 68 | 64 | ||
| 69 | Brief description of sub-directories: | 65 | Brief 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 @@ | |||
| 1 | HOW TO COMMIT CHANGES TO EMACS | 1 | HOW TO COMMIT CHANGES TO EMACS |
| 2 | 2 | ||
| 3 | Most of these points are from: | ||
| 4 | |||
| 3 | http://lists.gnu.org/archive/html/emacs-devel/2009-03/msg00555.html | 5 | http://lists.gnu.org/archive/html/emacs-devel/2009-03/msg00555.html |
| 4 | From: Miles Bader | 6 | From: Miles Bader |
| 5 | Subject: commit style redux | 7 | Subject: commit style redux |
| 6 | Date: Tue, 31 Mar 2009 12:21:20 +0900 | 8 | Date: 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 | ||
| 42 | Followup discussion: | 49 | Followup discussion: |
| 43 | http://lists.gnu.org/archive/html/emacs-devel/2010-01/msg00897.html | 50 | http://lists.gnu.org/archive/html/emacs-devel/2010-01/msg00897.html |
| 51 | http://lists.gnu.org/archive/html/emacs-devel/2010-02/msg00401.html | ||
| 44 | 52 | ||
| 45 | 53 | ||
| 46 | PREVIOUS GUIDELINES FOR CVS | 54 | PREVIOUS 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 |