comparison lisp/version.el @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents 1040fe1366ac
children 4be1180a9e89
comparison
equal deleted inserted replaced
97:498bf5da1c90 98:0d2f883870bc
20 20
21 ;;; Synched up with: FSF 19.34. 21 ;;; Synched up with: FSF 19.34.
22 22
23 ;;; Code: 23 ;;; Code:
24 24
25 (defconst emacs-version "20.0" 25 (defconst emacs-version "20.1"
26 "Version numbers of this version of Emacs.") 26 "Version numbers of this version of Emacs.")
27 27
28 (setq emacs-version (purecopy (concat emacs-version " XEmacs Lucid"))) 28 (setq emacs-version (purecopy (concat emacs-version " XEmacs Lucid (beta1)")))
29 29
30 (defconst emacs-major-version 30 (defconst emacs-major-version
31 (progn (or (string-match "^[0-9]+" emacs-version) 31 (progn (or (string-match "^[0-9]+" emacs-version)
32 (error "emacs-version unparsable")) 32 (error "emacs-version unparsable"))
33 (string-to-int (match-string 0 emacs-version))) 33 (string-to-int (match-string 0 emacs-version)))