From: Glenn Morris Date: Tue, 8 Jan 2008 04:43:10 +0000 (+0000) Subject: (set-version): Add doc/man/emacs.1. X-Git-Tag: emacs-pretest-23.0.90~8654 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=adf94aa6d748b269771e6caa8b0539d05076997e;p=emacs.git (set-version): Add doc/man/emacs.1. --- diff --git a/admin/ChangeLog b/admin/ChangeLog index 2855ef1b033..90984764650 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog @@ -1,3 +1,7 @@ +2008-01-08 Glenn Morris + + * admin.el (set-version): Add doc/man/emacs.1. + 2008-01-06 Dan Nicolaescu * 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." (set-version-in-file root "doc/lispref/elisp.texi" version (rx (and "EMACSVER" (1+ space) (submatch (1+ (in "0-9.")))))) + (set-version-in-file root "doc/man/emacs.1" version + (rx (and ".TH EMACS" (1+ not-newline) + "GNU Emacs" (1+ space) + (submatch (1+ (in "0-9.")))))) (set-version-in-file root "lib-src/makefile.w32-in" version (rx (and "VERSION" (0+ space) "=" (0+ space) (submatch (1+ (in "0-9."))))))