emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/version.el,v


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/version.el,v
Date: Wed, 28 Feb 2007 16:28:17 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        07/02/28 16:28:16

Index: version.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/version.el,v
retrieving revision 2.47
retrieving revision 2.48
diff -u -b -r2.47 -r2.48
--- version.el  23 Feb 2007 17:37:28 -0000      2.47
+++ version.el  28 Feb 2007 16:28:15 -0000      2.48
@@ -32,13 +32,13 @@
 
 (defconst emacs-major-version
   (progn (string-match "^[0-9]+" emacs-version)
-        (string-to-int (match-string 0 emacs-version)))
+        (string-to-number (match-string 0 emacs-version)))
   "Major version number of this version of Emacs.
 This variable first existed in version 19.23.")
 
 (defconst emacs-minor-version
   (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
-        (string-to-int (match-string 1 emacs-version)))
+        (string-to-number (match-string 1 emacs-version)))
   "Minor version number of this version of Emacs.
 This variable first existed in version 19.23.")
 
@@ -92,5 +92,5 @@
 ;;version-control: never
 ;;End:
 
-;;; arch-tag: e60dc445-6218-4a4c-a7df-f15a818642a0
+;; arch-tag: e60dc445-6218-4a4c-a7df-f15a818642a0
 ;;; version.el ends here




reply via email to

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