diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-05 03:32:13 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-05 03:32:13 +0000 |
commit | 24bbe01e0923dc85b2dd62f2c41f3a1fd07933b0 (patch) | |
tree | 7704d8b8281275841409be970eef1033727899e3 /admin/admin.el | |
parent | 3728bf0389987e4c4aee38b74eed470462e2a9be (diff) | |
download | emacs-24bbe01e0923dc85b2dd62f2c41f3a1fd07933b0.tar.gz |
(set-version): Handle configure.in. Adapt for doc/ directory layout
for manuals.
Diffstat (limited to 'admin/admin.el')
-rw-r--r-- | admin/admin.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/admin/admin.el b/admin/admin.el index a8b436171c5..a490442a44b 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -68,10 +68,14 @@ Root must be the root of an Emacs source tree." (set-version-in-file root "README" version (rx (and "version" (1+ space) (submatch (1+ (in "0-9.")))))) - (set-version-in-file root "man/emacs.texi" version + (set-version-in-file root "configure.in" version + (rx (and "AC_INIT" (1+ (not (in ?,))) + ?, (0+ space) + (submatch (1+ (in "0-9.")))))) + (set-version-in-file root "doc/emacs/emacs.texi" version (rx (and "EMACSVER" (1+ space) (submatch (1+ (in "0-9.")))))) - (set-version-in-file root "lispref/elisp.texi" version + (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 "lib-src/makefile.w32-in" version |