comparison lisp/version.el @ 209:41ff10fd062f r20-4b3

Import from CVS: tag r20-4b3
author cvs
date Mon, 13 Aug 2007 10:04:58 +0200
parents b405438285a2
children 41f2f0e326e9
comparison
equal deleted inserted replaced
208:f427b8ec4379 209:41ff10fd062f
1 ;; Record version number of Emacs. 1 ;; version.el --- Record version number of Emacs.
2 ;; Copyright (C) 1985, 1991-1994 Free Software Foundation, Inc. 2
3 ;; Copyright (C) 1985, 1991-1994, 1997 Free Software Foundation, Inc.
4
5 ;; Maintainer: XEmacs Development Team
6 ;; Keywords: internal, dumped
3 7
4 ;; This file is part of XEmacs. 8 ;; This file is part of XEmacs.
5 9
6 ;; XEmacs is free software; you can redistribute it and/or modify 10 ;; XEmacs is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by 11 ;; it under the terms of the GNU General Public License as published by
18 ;; Free Software Foundation Inc., 59 Temple Place - Suite 330, 22 ;; Free Software Foundation Inc., 59 Temple Place - Suite 330,
19 ;; Boston, MA 02111-1307, USA. 23 ;; Boston, MA 02111-1307, USA.
20 24
21 ;;; Synched up with: FSF 19.34. 25 ;;; Synched up with: FSF 19.34.
22 26
27 ;;; Commentary:
28
29 ;; This file is dumped with XEmacs.
30
23 ;;; Code: 31 ;;; Code:
24
25 ;;(defconst emacs-version "20.3"
26 ;; "Version numbers of this version of XEmacs.")
27
28 ;;(defconst xemacs-codename "Copenhagen"
29 ;; "Release nickname, primarily useful for trial prereleases.
30 ;;Warning, this variable did not exist in XEmacs versions prior to 20.3")
31
32 ;;(defconst xemacs-betaname "(beta8)"
33 ;; "Non-nil when this is a test (beta) version of XEmacs.
34 ;;Warning, this variable did not exist in XEmacs versions prior to 20.3")
35 32
36 (defconst xemacs-betaname 33 (defconst xemacs-betaname
37 (and emacs-beta-version (format "(beta%d)" emacs-beta-version)) 34 (and emacs-beta-version (format "(beta%d)" emacs-beta-version))
38 "Non-nil when this is a test (beta) version of XEmacs. 35 "Non-nil when this is a test (beta) version of XEmacs.
39 Warning, this variable did not exist in XEmacs versions prior to 20.3") 36 Warning, this variable did not exist in XEmacs versions prior to 20.3")