emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/admin/admin.el


From: Jason Rumney
Subject: [Emacs-diffs] Changes to emacs/admin/admin.el
Date: Sat, 01 Oct 2005 08:51:20 -0400

Index: emacs/admin/admin.el
diff -c emacs/admin/admin.el:1.8 emacs/admin/admin.el:1.9
*** emacs/admin/admin.el:1.8    Mon Jul  4 14:10:29 2005
--- emacs/admin/admin.el        Sat Oct  1 12:51:19 2005
***************
*** 87,93 ****
                                (submatch (1+ (in "0-9."))))))
    (set-version-in-file root "lispref/elisp.texi" version
                       (rx (and "EMACSVER" (1+ space)
!                               (submatch (1+ (in "0-9.")))))))
  
  ;;; arch-tag: 4ea83636-2293-408b-884e-ad64f22a3bf5
  ;; admin.el ends here.
--- 87,122 ----
                                (submatch (1+ (in "0-9."))))))
    (set-version-in-file root "lispref/elisp.texi" version
                       (rx (and "EMACSVER" (1+ space)
!                               (submatch (1+ (in "0-9."))))))
!   ;; nt/emacs.rc also contains the version number, but in an awkward
!   ;; format. It must contain four components, separated by commas, and
!   ;; in two places those commas are followed by space, in two other
!   ;; places they are not.
!   (let* ((version-components (append (split-string version "\\.")
!                                   '("0" "0")))
!        (comma-version
!         (concat (car version-components) ","
!                 (cadr version-components) ","
!                 (cadr (cdr version-components)) "," 
!                 (cadr (cdr (cdr version-components)))))
!        (comma-space-version
!         (concat (car version-components) ", "
!                 (cadr version-components) ", "
!                 (cadr (cdr version-components)) ", " 
!                 (cadr (cdr (cdr version-components))))))
!     (set-version-in-file root "nt/emacs.rc" comma-version
!                        (rx (and "FILEVERSION" (1+ space)
!                                 (submatch (1+ (in "0-9,"))))))
!     (set-version-in-file root "nt/emacs.rc" comma-version
!                        (rx (and "PRODUCTVERSION" (1+ space)
!                                 (submatch (1+ (in "0-9,"))))))
!     (set-version-in-file root "nt/emacs.rc" comma-space-version
!                        (rx (and "\"FileVersion\"" (0+ space) ?, (0+ space)
!                                 ?\" (submatch (1+ (in "0-9, "))) "\\0\"")))
!     (set-version-in-file root "nt/emacs.rc" comma-space-version
!                        (rx (and "\"ProductVersion\"" (0+ space) ?,
!                                 (0+ space) ?\" (submatch (1+ (in "0-9, ")))
!                                 "\\0\"")))))
  
  ;;; arch-tag: 4ea83636-2293-408b-884e-ad64f22a3bf5
  ;; admin.el ends here.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]