]> git.eshelyaron.com Git - emacs.git/commitdiff
* admin.el (set-version): Fix regexps for config.nt and sed2v2.inp.
authorChong Yidong <cyd@stupidchicken.com>
Mon, 26 Sep 2011 03:02:21 +0000 (23:02 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 26 Sep 2011 03:02:21 +0000 (23:02 -0400)
admin/ChangeLog
admin/admin.el

index 9856f38fabb2ae95b364de2615f0e2b807fe1b2d..7648b2a8455e45937e50dd1968cc3be044977f19 100644 (file)
@@ -1,3 +1,8 @@
+2011-09-26  Chong Yidong  <cyd@stupidchicken.com>
+
+       * admin.el (set-version): Fix regexps for config.nt and
+       sed2v2.inp.
+
 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
 
        Merge from gnulib (Bug#9169).
index 70958ce1a76fa2ba086b2190d7fc4f8b3395ef42..673d86c8825973d76b9aa941f863c10ab8a6b8e9 100644 (file)
@@ -75,11 +75,11 @@ Root must be the root of an Emacs source tree."
                                (submatch (1+ (in "0-9."))))))
   (set-version-in-file root "nt/config.nt" version
                       (rx (and bol "#" (0+ blank) "define" (1+ blank)
-                               "VERSION" (1+ blank)
+                               "VERSION" (1+ blank) "\""
                                (submatch (1+ (in "0-9."))))))
   (set-version-in-file root "msdos/sed2v2.inp" version
                       (rx (and bol "/^#undef " (1+ not-newline)
-                               "define VERSION" (1+ space)
+                               "define VERSION" (1+ space) "\""
                                (submatch (1+ (in "0-9."))))))
   (set-version-in-file root "nt/makefile.w32-in" version
                       (rx (and "VERSION" (0+ space) "=" (0+ space)