aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorMiles Bader2006-12-07 04:14:14 +0000
committerMiles Bader2006-12-07 04:14:14 +0000
commita0451a715e4ed018a02b825d0eb823424693d1de (patch)
treed2b10fcc69c333ccc438d7a9ad116fbc1495fc9e /admin
parentd324f894beea8b485792c779659e8e20c1cb699d (diff)
parent12f7728e938fe5bb850ce2928637d1e349919142 (diff)
downloademacs-a0451a715e4ed018a02b825d0eb823424693d1de.tar.gz
emacs-a0451a715e4ed018a02b825d0eb823424693d1de.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 523-544) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 168-171) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-150
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog8
-rw-r--r--admin/FOR-RELEASE14
-rw-r--r--admin/admin.el6
-rw-r--r--admin/alloc-colors.c3
-rwxr-xr-xadmin/build-configs3
-rw-r--r--admin/cus-test.el3
-rwxr-xr-xadmin/diff-tar-files3
-rwxr-xr-xadmin/make-emacs3
-rwxr-xr-xadmin/revdiff3
9 files changed, 36 insertions, 10 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index b60edd3bea9..0f01e1ae1c7 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,8 @@
12006-11-25 Juanma Barranquero <lekktu@gmail.com>
2
3 * admin.el (set-version): Set version number in
4 lib-src/makefile.w32-in.
5
12006-11-06 Reiner Steib <Reiner.Steib@gmx.de> 62006-11-06 Reiner Steib <Reiner.Steib@gmx.de>
2 7
3 * FOR-RELEASE (BUGS): Remove "Build failure under Suse 10.0" was 8 * FOR-RELEASE (BUGS): Remove "Build failure under Suse 10.0" was
@@ -395,7 +400,8 @@
395;; add-log-time-zone-rule: t 400;; add-log-time-zone-rule: t
396;; End: 401;; End:
397 402
398 Copyright (C) 2001 Free Software Foundation, Inc. 403 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
404 Foundation, Inc.
399 Copying and distribution of this file, with or without modification, 405 Copying and distribution of this file, with or without modification,
400 are permitted provided the copyright notice and this notice are preserved. 406 are permitted provided the copyright notice and this notice are preserved.
401 407
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 68a6038cbdd..3e481810a69 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -43,11 +43,21 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem.
43 43
44* BUGS 44* BUGS
45 45
46** make-network-process :nowait t doesn't work for non-local targets
47 on Windows.
48 If it cannot be fixed, (featurep 'make-network-process '(:nowait t))
49 should return nil.
50
46** Document use of gpg-agent 51** Document use of gpg-agent
47 52
48** seltenreich@gmx.de, Nov 19: Failed assertion on make-frame-on-display 53** monnier@iro.umontreal.ca, Nov 24:
54 gnus-summary-tick-article-forward doesn't work any more?
55
56** christopher.ian.moore@gmail.com, Nov 30: too much recursion in gnus-sort-threads-1.
57
58** dooglus@gmail.com, Dec 1: Replacement of spaces in wdired
49 59
50** jbuehler@spirentcom.com, Nov 20: AIX 5.2 loadup failure 60** Should CC mode set beginning-of-defun-function?
51 61
52* DOCUMENTATION 62* DOCUMENTATION
53 63
diff --git a/admin/admin.el b/admin/admin.el
index 6cd090c0805..c2d4eebe903 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -1,6 +1,7 @@
1;;; admin.el --- utilities for Emacs administration 1;;; admin.el --- utilities for Emacs administration
2 2
3;; Copyright (C) 2001, 2005 Free Software Foundation, Inc. 3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
4;; Foundation, Inc.
4 5
5;; This file is part of GNU Emacs. 6;; This file is part of GNU Emacs.
6 7
@@ -88,6 +89,9 @@ Root must be the root of an Emacs source tree."
88 (set-version-in-file root "lispref/elisp.texi" version 89 (set-version-in-file root "lispref/elisp.texi" version
89 (rx (and "EMACSVER" (1+ space) 90 (rx (and "EMACSVER" (1+ space)
90 (submatch (1+ (in "0-9.")))))) 91 (submatch (1+ (in "0-9."))))))
92 (set-version-in-file root "lib-src/makefile.w32-in" version
93 (rx (and "VERSION" (0+ space) "=" (0+ space)
94 (submatch (1+ (in "0-9."))))))
91 ;; nt/emacs.rc also contains the version number, but in an awkward 95 ;; nt/emacs.rc also contains the version number, but in an awkward
92 ;; format. It must contain four components, separated by commas, and 96 ;; format. It must contain four components, separated by commas, and
93 ;; in two places those commas are followed by space, in two other 97 ;; in two places those commas are followed by space, in two other
diff --git a/admin/alloc-colors.c b/admin/alloc-colors.c
index 947b542005c..3ca8d4349f3 100644
--- a/admin/alloc-colors.c
+++ b/admin/alloc-colors.c
@@ -1,5 +1,6 @@
1/* Allocate X colors. Used for testing with dense colormaps. 1/* Allocate X colors. Used for testing with dense colormaps.
2 Copyright (C) 2001, 2006 Free Software Foundation, Inc. 2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
3 Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
diff --git a/admin/build-configs b/admin/build-configs
index 29fc0f0b94c..b3bbfda0cd2 100755
--- a/admin/build-configs
+++ b/admin/build-configs
@@ -1,6 +1,7 @@
1#! /usr/bin/perl 1#! /usr/bin/perl
2 2
3# Copyright (C) 2001, 2006 Free Software Foundation, Inc. 3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
4# Foundation, Inc.
4# 5#
5# This file is part of GNU Emacs. 6# This file is part of GNU Emacs.
6# 7#
diff --git a/admin/cus-test.el b/admin/cus-test.el
index 6ff92b88c95..57e98b6f323 100644
--- a/admin/cus-test.el
+++ b/admin/cus-test.el
@@ -1,6 +1,7 @@
1;;; cus-test.el --- tests for custom types and load problems 1;;; cus-test.el --- tests for custom types and load problems
2 2
3;; Copyright (C) 1998, 2000, 2002, 2006 Free Software Foundation, Inc. 3;; Copyright (C) 1998, 2000, 2002, 2003, 2004, 2005, 2006 Free
4;; Software Foundation, Inc.
4 5
5;; Author: Markus Rost <markus.rost@mathematik.uni-regensburg.de> 6;; Author: Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6;; Maintainer: Markus Rost <rost@math.ohio-state.edu> 7;; Maintainer: Markus Rost <rost@math.ohio-state.edu>
diff --git a/admin/diff-tar-files b/admin/diff-tar-files
index da3b1911abb..c27a8df991d 100755
--- a/admin/diff-tar-files
+++ b/admin/diff-tar-files
@@ -1,6 +1,7 @@
1#! /bin/sh 1#! /bin/sh
2 2
3# Copyright (C) 2001, 2006 Free Software Foundation, Inc. 3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
4# Foundation, Inc.
4# 5#
5# This file is part of GNU Emacs. 6# This file is part of GNU Emacs.
6# 7#
diff --git a/admin/make-emacs b/admin/make-emacs
index 57d04a8f625..01b8bddbd78 100755
--- a/admin/make-emacs
+++ b/admin/make-emacs
@@ -1,6 +1,7 @@
1#! /usr/bin/perl 1#! /usr/bin/perl
2 2
3# Copyright (C) 2001, 2006 Free Software Foundation, Inc. 3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
4# Foundation, Inc.
4# 5#
5# This file is part of GNU Emacs. 6# This file is part of GNU Emacs.
6# 7#
diff --git a/admin/revdiff b/admin/revdiff
index 3b5ffaad3f1..9d419cdbfdb 100755
--- a/admin/revdiff
+++ b/admin/revdiff
@@ -1,6 +1,7 @@
1#! /usr/bin/perl 1#! /usr/bin/perl
2 2
3# Copyright (C) 2001, 2006 Free Software Foundation, Inc. 3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
4# Foundation, Inc.
4# 5#
5# This file is part of GNU Emacs. 6# This file is part of GNU Emacs.
6# 7#