aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorMiles Bader2007-12-06 09:51:45 +0000
committerMiles Bader2007-12-06 09:51:45 +0000
commit0bd508417142ff377f34aec8dcec9438d9175c2c (patch)
tree4d60fe09e5cebf7d79766b11e9cda8cc1c9dbb9b /admin
parent98fe991da804a42f53f6a5e84cd5eab18a82e181 (diff)
parent9fb1ba8090da3528de56158a79bd3527d31c7f2f (diff)
downloademacs-0bd508417142ff377f34aec8dcec9438d9175c2c.tar.gz
emacs-0bd508417142ff377f34aec8dcec9438d9175c2c.zip
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog15
-rw-r--r--admin/FOR-RELEASE30
-rw-r--r--admin/admin.el25
3 files changed, 40 insertions, 30 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 706b2f68c8d..c3252d3ff70 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,18 @@
12007-12-05 Glenn Morris <rgm@gnu.org>
2
3 * admin.el (set-version): Handle configure.in. Adapt for doc/
4 directory layout for manuals.
5
62007-12-01 Reiner Steib <Reiner.Steib@gmx.de>
7
8 * FOR-RELEASE: Remove Gnus send mail problem. Other Gnus bugs
9 have been fixed in Gnus CVS but have not yet been synched to
10 Emacs.
11
122007-11-17 Glenn Morris <rgm@gnu.org>
13
14 * admin.el (process-lines): Move to ../lisp/subr.el.
15
12007-10-23 Glenn Morris <rgm@gnu.org> 162007-10-23 Glenn Morris <rgm@gnu.org>
2 17
3 * MAINTAINERS: Move here from ../. 18 * MAINTAINERS: Move here from ../.
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 387baade381..3ab61ba577c 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -89,23 +89,31 @@ http://lists.gnu.org/archive/html/emacs-devel/2007-05/msg00209.html
89** menu indications of key bindings for remapped commands 89** menu indications of key bindings for remapped commands
90http://lists.gnu.org/archive/html/emacs-devel/2007-05/msg01339.html 90http://lists.gnu.org/archive/html/emacs-devel/2007-05/msg01339.html
91 91
92** tromey@redhat.com: two View-mode "quit" bugs
93http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00103.html
94
95** rms: gnus-dired.el is a mistake. Those features should not 92** rms: gnus-dired.el is a mistake. Those features should not
96be part of Gnus. They should be moved to some other part of Emacs. 93be part of Gnus. They should be moved to some other part of Emacs.
97 94
98** C-x v v no longer works the way it used to 95** sdl.web@gmail.com, 28 Oct: window-system in face definition
99http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00785.html 96
97** Gnus archive groups are not shown at all if they are not at the default level.
98Fixed in Gnus CVS, but the patch has not been synched to Emacs yet:
99http://thread.gmane.org/gmane.emacs.gnus.general/65622/focus=65757
100 100
101** vc-diff no longer works the way it used to 101** Extra question asked when doing a reply in Gnus
102http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01753.html 102Fixed in Gnus CVS, but the patch has not been synched to Emacs yet:
103(vc-revert also needs the repository now with CVS) 103http://thread.gmane.org/gmane.emacs.gnus.general/65627/65768
104 104
105** sdl.web@gmail.com, 28 Oct: window-system in face definition 105** sdl.web@gmail.com, 30 Oct: ps-lpr-switches has no effect
106
107** Stephen.Berman@gmx.net: minibuffer and current-local-map
108
109** timh@insightful.com, 9 Nov: X-coding-system incompatibility, and workaround
110
111** Get rid of old-style backquotes in cc-vars.el.
112ttn has a patch:
113http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg02052.html
106 114
107** add README files for etc/gnus, etc/images/smilies/medium,grayscale 115** Fix or document the shortcoming of easymenu and :suffix.
108update etc/images README files with any new images 116http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01857.html
109 117
110* DOCUMENTATION 118* DOCUMENTATION
111 119
diff --git a/admin/admin.el b/admin/admin.el
index 76c50243b3d..a490442a44b 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -29,23 +29,6 @@
29 29
30;;; Code: 30;;; Code:
31 31
32(defun process-lines (program &rest args)
33 "Execute PROGRAM with ARGS, returning its output as a list of lines.
34Signal an error if the program returns with a non-zero exit status."
35 (with-temp-buffer
36 (let ((status (apply 'call-process program nil (current-buffer) nil args)))
37 (unless (eq status 0)
38 (error "%s exited with status %s" program status))
39 (goto-char (point-min))
40 (let (lines)
41 (while (not (eobp))
42 (setq lines (cons (buffer-substring-no-properties
43 (line-beginning-position)
44 (line-end-position))
45 lines))
46 (forward-line 1))
47 (nreverse lines)))))
48
49(defun add-release-logs (root version) 32(defun add-release-logs (root version)
50 "Add \"Version VERSION released.\" change log entries in ROOT. 33 "Add \"Version VERSION released.\" change log entries in ROOT.
51Root must be the root of an Emacs source tree." 34Root must be the root of an Emacs source tree."
@@ -85,10 +68,14 @@ Root must be the root of an Emacs source tree."
85 (set-version-in-file root "README" version 68 (set-version-in-file root "README" version
86 (rx (and "version" (1+ space) 69 (rx (and "version" (1+ space)
87 (submatch (1+ (in "0-9.")))))) 70 (submatch (1+ (in "0-9."))))))
88 (set-version-in-file root "man/emacs.texi" version 71 (set-version-in-file root "configure.in" version
72 (rx (and "AC_INIT" (1+ (not (in ?,)))
73 ?, (0+ space)
74 (submatch (1+ (in "0-9."))))))
75 (set-version-in-file root "doc/emacs/emacs.texi" version
89 (rx (and "EMACSVER" (1+ space) 76 (rx (and "EMACSVER" (1+ space)
90 (submatch (1+ (in "0-9.")))))) 77 (submatch (1+ (in "0-9."))))))
91 (set-version-in-file root "lispref/elisp.texi" version 78 (set-version-in-file root "doc/lispref/elisp.texi" version
92 (rx (and "EMACSVER" (1+ space) 79 (rx (and "EMACSVER" (1+ space)
93 (submatch (1+ (in "0-9.")))))) 80 (submatch (1+ (in "0-9."))))))
94 (set-version-in-file root "lib-src/makefile.w32-in" version 81 (set-version-in-file root "lib-src/makefile.w32-in" version