428
|
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
|
|
7
|
|
8 ;; This file is part of XEmacs.
|
|
9
|
|
10 ;; XEmacs is free software; you can redistribute it and/or modify
|
|
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
|
|
15 ;; XEmacs is distributed in the hope that it will be useful,
|
|
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
|
613
|
21 ;; along with XEmacs; see the file COPYING. If not, write to the
|
428
|
22 ;; Free Software Foundation Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Synched up with: FSF 19.34.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; This file is dumped with XEmacs.
|
|
30
|
|
31 ;;; Code:
|
|
32
|
|
33 (defconst xemacs-betaname
|
|
34 (and emacs-beta-version (format "(beta%d)" emacs-beta-version))
|
|
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
|
|
38 (defconst emacs-version
|
975
|
39 (format "%d.%d %s%s%s%s%s"
|
444
|
40 emacs-major-version
|
|
41 emacs-minor-version
|
|
42 (if emacs-patch-level
|
|
43 (format "(patch %d)" emacs-patch-level)
|
|
44 "")
|
|
45 (if xemacs-betaname
|
|
46 (concat " " xemacs-betaname)
|
|
47 "")
|
|
48 (if xemacs-codename
|
|
49 (concat " \"" xemacs-codename "\"")
|
|
50 "")
|
975
|
51 (if xemacs-extra-name
|
|
52 (concat " " xemacs-extra-name)
|
|
53 "")
|
444
|
54 " XEmacs Lucid")
|
428
|
55 "Version numbers of this version of XEmacs.")
|
|
56
|
|
57 (if (featurep 'infodock)
|
|
58 (require 'id-vers))
|
|
59
|
|
60 ;; Moved to C code as of XEmacs 20.3
|
|
61 ;(defconst emacs-major-version
|
|
62 ; (progn (or (string-match "^[0-9]+" emacs-version)
|
|
63 ; (error "emacs-version unparsable"))
|
|
64 ; (string-to-int (match-string 0 emacs-version)))
|
|
65 ; "Major version number of this version of Emacs, as an integer.
|
|
66 ;Warning, this variable did not exist in Emacs versions earlier than:
|
|
67 ; FSF Emacs: 19.23
|
|
68 ; XEmacs: 19.10")
|
|
69
|
|
70 ;; Moved to C code as of XEmacs 20.3
|
|
71 ;(defconst emacs-minor-version
|
|
72 ; (progn (or (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
|
|
73 ; (error "emacs-version unparsable"))
|
|
74 ; (string-to-int (match-string 1 emacs-version)))
|
|
75 ; "Minor version number of this version of Emacs, as an integer.
|
|
76 ;Warning, this variable did not exist in Emacs versions earlier than:
|
|
77 ; FSF Emacs: 19.23
|
|
78 ; XEmacs: 19.10")
|
|
79
|
|
80 (defconst emacs-build-time (current-time-string)
|
|
81 "Time at which Emacs was dumped out.")
|
|
82
|
|
83 (defconst emacs-build-system (system-name))
|
|
84
|
|
85 (defun emacs-version (&optional arg)
|
|
86 "Return string describing the version of Emacs that is running.
|
|
87 When called interactively with a prefix argument, insert string at point.
|
|
88 Don't use this function in programs to choose actions according
|
|
89 to the system configuration; look at `system-configuration' instead."
|
|
90 (interactive "p")
|
|
91 (save-match-data
|
|
92 (let ((version-string
|
|
93 (format
|
|
94 "XEmacs %s %s(%s%s) of %s %s on %s"
|
|
95 (substring emacs-version 0 (string-match " XEmacs" emacs-version))
|
|
96 (if (not (featurep 'infodock))
|
|
97 "[Lucid] "
|
|
98 "")
|
|
99 system-configuration
|
|
100 (cond ((or (and (fboundp 'featurep)
|
|
101 (featurep 'mule))
|
|
102 (memq 'mule features)) ", Mule")
|
|
103 (t ""))
|
|
104 (substring emacs-build-time 0
|
|
105 (string-match " *[0-9]*:" emacs-build-time))
|
|
106 (substring emacs-build-time
|
|
107 (string-match "[0-9]*$" emacs-build-time))
|
|
108 emacs-build-system)))
|
|
109 (cond
|
|
110 ((null arg) version-string)
|
|
111 ((eq arg 1) (message "%s" version-string))
|
|
112 (t (insert version-string))))))
|
|
113
|
|
114 ;; from emacs-vers.el
|
|
115 (defun emacs-version>= (major &optional minor patch)
|
|
116 "Return true if the Emacs version is >= to the given MAJOR, MINOR,
|
|
117 and PATCH numbers.
|
|
118 The MAJOR version number argument is required, but the other arguments
|
|
119 argument are optional. Only the Non-nil arguments are used in the test."
|
|
120 (let ((emacs-patch (or emacs-patch-level emacs-beta-version -1)))
|
|
121 (cond ((> emacs-major-version major))
|
|
122 ((< emacs-major-version major) nil)
|
|
123 ((null minor))
|
|
124 ((> emacs-minor-version minor))
|
|
125 ((< emacs-minor-version minor) nil)
|
|
126 ((null patch))
|
|
127 ((>= emacs-patch patch)))))
|
|
128
|
|
129 ;;; We hope that this alias is easier for people to find.
|
|
130 (define-function 'version 'emacs-version)
|
|
131
|
4246
|
132 (defvar Installation-file-coding-system
|
|
133 (eval-when-compile `,(coding-system-name (find-coding-system 'native)))
|
|
134 "The coding system used to create the `Installation' file.
|
|
135
|
|
136 The `Installation' file is created by configure, and the
|
|
137 `Installation-string' variable reflects its contents.
|
|
138
|
|
139 This is initialized to reflect the native coding system at the time
|
|
140 version.el was byte-compiled; ideally it would reflect the native coding
|
|
141 system of the environment when XEmacs was dumped, but the locale
|
|
142 initialization code isn't called at dump time, and the appropriate value
|
|
143 at byte-compile time should be close enough. Note that this means that the
|
|
144 value of `Installation-string' during dump time thus reflects loading the
|
|
145 file using the `binary' coding system. ")
|
428
|
146
|
4246
|
147 (defvar Installation-string
|
|
148 ;; Initialize Installation-string. We do it before loading
|
|
149 ;; anything so that dumped code can make use of its value.
|
|
150 (save-current-buffer
|
|
151 (set-buffer (get-buffer-create (generate-new-buffer-name
|
|
152 " *temp*")))
|
|
153 ;; insert-file-contents-internal bogusly calls
|
|
154 ;; format-decode without checking if it's defined.
|
|
155 (fset 'format-decode #'(lambda (f l &optional v) l))
|
|
156 (insert-file-contents-internal
|
|
157 (expand-file-name "Installation" build-directory)
|
|
158 ;; Relies on our working out the system coding system
|
|
159 ;; correctly at startup.
|
|
160 nil nil nil nil
|
|
161 ;; Installation-file-coding-system is actually respected in
|
|
162 ;; mule/general-late.el, after all the dumped coding systems have been
|
|
163 ;; loaded.
|
|
164 'binary)
|
|
165 (fmakunbound 'format-decode)
|
|
166 (prog1 (buffer-substring)
|
|
167 (kill-buffer (current-buffer))))
|
|
168 "Description of XEmacs installation.
|
428
|
169
|
4246
|
170 This reflects the values that the configure script worked out at build time,
|
|
171 including things like the C code features included at compile time and the
|
|
172 installation prefix. Normally used when submitting a bug report;
|
|
173 occasionally used, in a way the XEmacs developers don't endorse, to work out
|
|
174 version information. ")
|
|
175
|
|
176 ;;; version.el ends here |