annotate lisp/version.el @ 192:9d35321dd38c

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