comparison lisp/version.el @ 116:9f59509498e1 r20-1b10

Import from CVS: tag r20-1b10
author cvs
date Mon, 13 Aug 2007 09:23:06 +0200
parents 8619ce7e4c50
children 7d55a9ba150c
comparison
equal deleted inserted replaced
115:f109f7dabbe2 116:9f59509498e1
23 ;;; Code: 23 ;;; Code:
24 24
25 (defconst emacs-version "20.1" 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 (beta9)"))) 28 (setq emacs-version (purecopy (concat emacs-version " XEmacs Lucid (beta10)")))
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)))