209
|
1 ;; version.el --- Record version number of Emacs.
|
|
2
|
|
3 ;; Copyright (C) 1985, 1991-1994, 1997 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Maintainer: XEmacs Development Team
|
|
6 ;; Keywords: internal, dumped
|
0
|
7
|
70
|
8 ;; This file is part of XEmacs.
|
0
|
9
|
70
|
10 ;; XEmacs is free software; you can redistribute it and/or modify
|
0
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
70
|
15 ;; XEmacs is distributed in the hope that it will be useful,
|
0
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
70
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
0
|
24
|
72
|
25 ;;; Synched up with: FSF 19.34.
|
0
|
26
|
209
|
27 ;;; Commentary:
|
163
|
28
|
209
|
29 ;; This file is dumped with XEmacs.
|
157
|
30
|
209
|
31 ;;; Code:
|
0
|
32
|
163
|
33 (defconst xemacs-betaname
|
|
34 (and emacs-beta-version (format "(beta%d)" emacs-beta-version))
|
157
|
35 "Non-nil when this is a test (beta) version of XEmacs.
|
|
36 Warning, this variable did not exist in XEmacs versions prior to 20.3")
|
|
37
|
163
|
38 (defconst emacs-version
|
|
39 (purecopy
|
165
|
40 (format "%d.%d %s%s%s"
|
163
|
41 emacs-major-version
|
|
42 emacs-minor-version
|
165
|
43 (if xemacs-codename
|
|
44 (concat "\"" xemacs-codename "\"")
|
|
45 "")
|
|
46 (concat " XEmacs "
|
|
47 (if (not (featurep 'infodock))
|
|
48 " Lucid"
|
|
49 ""))
|
163
|
50 (if xemacs-betaname
|
|
51 (concat " " xemacs-betaname)
|
|
52 "")))
|
|
53 "Version numbers of this version of XEmacs.")
|
0
|
54
|
163
|
55 ;; Moved to C code as of XEmacs 20.3
|
|
56 ;(defconst emacs-major-version
|
|
57 ; (progn (or (string-match "^[0-9]+" emacs-version)
|
|
58 ; (error "emacs-version unparsable"))
|
|
59 ; (string-to-int (match-string 0 emacs-version)))
|
|
60 ; "Major version number of this version of Emacs, as an integer.
|
|
61 ;Warning, this variable did not exist in Emacs versions earlier than:
|
|
62 ; FSF Emacs: 19.23
|
|
63 ; XEmacs: 19.10")
|
0
|
64
|
163
|
65 ;; Moved to C code as of XEmacs 20.3
|
|
66 ;(defconst emacs-minor-version
|
|
67 ; (progn (or (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
|
|
68 ; (error "emacs-version unparsable"))
|
|
69 ; (string-to-int (match-string 1 emacs-version)))
|
|
70 ; "Minor version number of this version of Emacs, as an integer.
|
|
71 ;Warning, this variable did not exist in Emacs versions earlier than:
|
|
72 ; FSF Emacs: 19.23
|
|
73 ; XEmacs: 19.10")
|
0
|
74
|
70
|
75 (defconst emacs-build-time (current-time-string)
|
|
76 "Time at which Emacs was dumped out.")
|
0
|
77
|
|
78 (defconst emacs-build-system (system-name))
|
|
79
|
70
|
80 (defun emacs-version (&optional arg)
|
|
81 "Return string describing the version of Emacs that is running.
|
|
82 When called interactively with a prefix argument, insert string at point.
|
0
|
83 Don't use this function in programs to choose actions according
|
|
84 to the system configuration; look at `system-configuration' instead."
|
70
|
85 (interactive "p")
|
187
|
86 (save-match-data
|
|
87 (let ((version-string
|
|
88 (format
|
|
89 "XEmacs %s %s(%s%s) of %s %s on %s"
|
|
90 (substring emacs-version 0 (string-match " XEmacs" emacs-version))
|
|
91 (if (not (featurep 'infodock))
|
|
92 "[Lucid] "
|
|
93 "")
|
|
94 system-configuration
|
|
95 (cond ((or (and (fboundp 'featurep)
|
|
96 (featurep 'mule))
|
|
97 (memq 'mule features)) ", Mule")
|
|
98 (t ""))
|
|
99 (substring emacs-build-time 0
|
|
100 (string-match " *[0-9]*:" emacs-build-time))
|
|
101 (substring emacs-build-time
|
|
102 (string-match "[0-9]*$" emacs-build-time))
|
|
103 emacs-build-system)))
|
|
104 (cond
|
|
105 ((null arg) version-string)
|
|
106 ((eq arg 1) (message "%s" version-string))
|
|
107 (t (insert version-string))))))
|
0
|
108
|
|
109 ;; from emacs-vers.el
|
|
110 (defun emacs-version>= (major &optional minor)
|
|
111 "Return true if the Emacs version is >= to the given MAJOR and MINOR numbers.
|
|
112 The MAJOR version number argument is required, but the MINOR version number
|
|
113 argument is optional. If the minor version number is not specified (or is the
|
|
114 symbol `nil') then only the major version numbers are considered in the test."
|
|
115 (if (null minor)
|
|
116 (>= emacs-major-version major)
|
|
117 (or (> emacs-major-version major)
|
|
118 (and (= emacs-major-version major)
|
70
|
119 (>= emacs-minor-version minor)))))
|
0
|
120
|
|
121 ;;; We hope that this alias is easier for people to find.
|
|
122 (define-function 'version 'emacs-version)
|
|
123
|
|
124 ;; Put the emacs version number into the `pure[]' array in a form that
|
|
125 ;; `what(1)' can extract from the executable or a core file. We don't
|
|
126 ;; actually need this to be pointed to from lisp; pure objects can't
|
|
127 ;; be GCed.
|
|
128 (or (memq system-type '(vax-vms windows-nt ms-dos))
|
|
129 (purecopy (concat "\n@" "(#)" (emacs-version)
|
|
130 "\n@" "(#)" "Configuration: "
|
|
131 system-configuration "\n")))
|
|
132
|
|
133 ;;Local variables:
|
|
134 ;;version-control: never
|
|
135 ;;End:
|
|
136
|
|
137 ;;; version.el ends here
|