comparison lisp/version.el @ 83559:edf631bdbb7a

Merged from emacs@sv.gnu.org Patches applied: * emacs@sv.gnu.org/emacs--devo--0--patch-650 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-651 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-652 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-653 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-654 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-655 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-656 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-657 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-658 Merge from gnus--rel--5.10 * emacs@sv.gnu.org/emacs--devo--0--patch-659 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-203 Merge from emacs--devo--0 * emacs@sv.gnu.org/gnus--rel--5.10--patch-204 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-205 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-599
author Karoly Lorentey <karoly@lorentey.hu>
date Sun, 22 Apr 2007 11:42:03 +0000
parents b8d9a391daf3 2af668ab629d
children ddc474387d53
comparison
equal deleted inserted replaced
83558:8e46638e99c7 83559:edf631bdbb7a
30 (defconst emacs-version "23.0.51" "\ 30 (defconst emacs-version "23.0.51" "\
31 Version numbers of this version of Emacs.") 31 Version numbers of this version of Emacs.")
32 32
33 (defconst emacs-major-version 33 (defconst emacs-major-version
34 (progn (string-match "^[0-9]+" emacs-version) 34 (progn (string-match "^[0-9]+" emacs-version)
35 (string-to-int (match-string 0 emacs-version))) 35 (string-to-number (match-string 0 emacs-version)))
36 "Major version number of this version of Emacs. 36 "Major version number of this version of Emacs.
37 This variable first existed in version 19.23.") 37 This variable first existed in version 19.23.")
38 38
39 (defconst emacs-minor-version 39 (defconst emacs-minor-version
40 (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version) 40 (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
41 (string-to-int (match-string 1 emacs-version))) 41 (string-to-number (match-string 1 emacs-version)))
42 "Minor version number of this version of Emacs. 42 "Minor version number of this version of Emacs.
43 This variable first existed in version 19.23.") 43 This variable first existed in version 19.23.")
44 44
45 (defconst emacs-build-time (current-time) "\ 45 (defconst emacs-build-time (current-time) "\
46 Time at which Emacs was dumped out.") 46 Time at which Emacs was dumped out.")
91 91
92 ;;Local variables: 92 ;;Local variables:
93 ;;version-control: never 93 ;;version-control: never
94 ;;End: 94 ;;End:
95 95
96 ;;; arch-tag: e60dc445-6218-4a4c-a7df-f15a818642a0 96 ;; arch-tag: e60dc445-6218-4a4c-a7df-f15a818642a0
97 ;;; version.el ends here 97 ;;; version.el ends here