aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/admin.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/admin/admin.el b/admin/admin.el
index 6cd090c0805..b9937ea9882 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -88,6 +88,9 @@ Root must be the root of an Emacs source tree."
88 (set-version-in-file root "lispref/elisp.texi" version 88 (set-version-in-file root "lispref/elisp.texi" version
89 (rx (and "EMACSVER" (1+ space) 89 (rx (and "EMACSVER" (1+ space)
90 (submatch (1+ (in "0-9.")))))) 90 (submatch (1+ (in "0-9."))))))
91 (set-version-in-file root "lib-src/makefile.w32-in" version
92 (rx (and "VERSION" (0+ space) "=" (0+ space)
93 (submatch (1+ (in "0-9."))))))
91 ;; nt/emacs.rc also contains the version number, but in an awkward 94 ;; nt/emacs.rc also contains the version number, but in an awkward
92 ;; format. It must contain four components, separated by commas, and 95 ;; format. It must contain four components, separated by commas, and
93 ;; in two places those commas are followed by space, in two other 96 ;; in two places those commas are followed by space, in two other