aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorGlenn Morris2008-01-08 04:43:10 +0000
committerGlenn Morris2008-01-08 04:43:10 +0000
commitadf94aa6d748b269771e6caa8b0539d05076997e (patch)
tree8933d9dd5deb0a07ba0a57c43bcf89117fd622eb /admin
parent2f1982bbb0eef7fb74a7429b4441c85e8b8873c5 (diff)
downloademacs-adf94aa6d748b269771e6caa8b0539d05076997e.tar.gz
emacs-adf94aa6d748b269771e6caa8b0539d05076997e.zip
(set-version): Add doc/man/emacs.1.
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog4
-rw-r--r--admin/admin.el4
2 files changed, 8 insertions, 0 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 2855ef1b033..90984764650 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,7 @@
12008-01-08 Glenn Morris <rgm@gnu.org>
2
3 * admin.el (set-version): Add doc/man/emacs.1.
4
12008-01-06 Dan Nicolaescu <dann@ics.uci.edu> 52008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2 6
3 * notes/copyright: 7 * notes/copyright:
diff --git a/admin/admin.el b/admin/admin.el
index 1255649c888..3405d36520a 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -78,6 +78,10 @@ Root must be the root of an Emacs source tree."
78 (set-version-in-file root "doc/lispref/elisp.texi" version 78 (set-version-in-file root "doc/lispref/elisp.texi" version
79 (rx (and "EMACSVER" (1+ space) 79 (rx (and "EMACSVER" (1+ space)
80 (submatch (1+ (in "0-9.")))))) 80 (submatch (1+ (in "0-9."))))))
81 (set-version-in-file root "doc/man/emacs.1" version
82 (rx (and ".TH EMACS" (1+ not-newline)
83 "GNU Emacs" (1+ space)
84 (submatch (1+ (in "0-9."))))))
81 (set-version-in-file root "lib-src/makefile.w32-in" version 85 (set-version-in-file root "lib-src/makefile.w32-in" version
82 (rx (and "VERSION" (0+ space) "=" (0+ space) 86 (rx (and "VERSION" (0+ space) "=" (0+ space)
83 (submatch (1+ (in "0-9.")))))) 87 (submatch (1+ (in "0-9."))))))