summaryrefslogtreecommitdiff
path: root/lisp/version.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-01-19 12:53:42 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2021-01-19 12:53:42 -0500
commit039ab602cbf877eef1b18c6ef8b36dcf52ece5c4 (patch)
tree3cdd917ecd0694ed8edaa13266b917fa21d537c9 /lisp/version.el
parentf3b9d5b3155fac293d46e55827a1e0ce07afb0ae (diff)
downloademacs-039ab602cbf877eef1b18c6ef8b36dcf52ece5c4.tar.gz
emacs-039ab602cbf877eef1b18c6ef8b36dcf52ece5c4.tar.bz2
emacs-039ab602cbf877eef1b18c6ef8b36dcf52ece5c4.zip
* etc/NEWS.19: Add entry for `indent-line-to`
* lisp/version.el (emacs-major-version, emacs-minor-version): Remove redundant version info already displayed by `C-h o`.
Diffstat (limited to 'lisp/version.el')
-rw-r--r--lisp/version.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/version.el b/lisp/version.el
index fcfc2f8b806..3a3093fdd4a 100644
--- a/lisp/version.el
+++ b/lisp/version.el
@@ -29,14 +29,12 @@
(defconst emacs-major-version
(progn (string-match "^[0-9]+" emacs-version)
(string-to-number (match-string 0 emacs-version)))
- "Major version number of this version of Emacs.
-This variable first existed in version 19.23.")
+ "Major version number of this version of Emacs.")
(defconst emacs-minor-version
(progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
(string-to-number (match-string 1 emacs-version)))
- "Minor version number of this version of Emacs.
-This variable first existed in version 19.23.")
+ "Minor version number of this version of Emacs.")
(defconst emacs-build-system (system-name)
"Name of the system on which Emacs was built, or nil if not available.")