aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2021-01-19 12:53:42 -0500
committerStefan Monnier2021-01-19 12:53:42 -0500
commit039ab602cbf877eef1b18c6ef8b36dcf52ece5c4 (patch)
tree3cdd917ecd0694ed8edaa13266b917fa21d537c9
parentf3b9d5b3155fac293d46e55827a1e0ce07afb0ae (diff)
downloademacs-039ab602cbf877eef1b18c6ef8b36dcf52ece5c4.tar.gz
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`.
-rw-r--r--etc/NEWS.192
-rw-r--r--lisp/version.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/etc/NEWS.19 b/etc/NEWS.19
index 43235e0e154..f2cef62971b 100644
--- a/etc/NEWS.19
+++ b/etc/NEWS.19
@@ -2824,6 +2824,8 @@ the text of the region according to the new value.
2824the fill-column has been exceeded; the function can determine on its 2824the fill-column has been exceeded; the function can determine on its
2825own whether filling (or justification) is necessary. 2825own whether filling (or justification) is necessary.
2826 2826
2827**** New helper function 'indent-line-to'
2828
2827** Processes 2829** Processes
2828 2830
2829*** process-tty-name is a new function that returns the name of the 2831*** process-tty-name is a new function that returns the name of the
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 @@
29(defconst emacs-major-version 29(defconst emacs-major-version
30 (progn (string-match "^[0-9]+" emacs-version) 30 (progn (string-match "^[0-9]+" emacs-version)
31 (string-to-number (match-string 0 emacs-version))) 31 (string-to-number (match-string 0 emacs-version)))
32 "Major version number of this version of Emacs. 32 "Major version number of this version of Emacs.")
33This variable first existed in version 19.23.")
34 33
35(defconst emacs-minor-version 34(defconst emacs-minor-version
36 (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version) 35 (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
37 (string-to-number (match-string 1 emacs-version))) 36 (string-to-number (match-string 1 emacs-version)))
38 "Minor version number of this version of Emacs. 37 "Minor version number of this version of Emacs.")
39This variable first existed in version 19.23.")
40 38
41(defconst emacs-build-system (system-name) 39(defconst emacs-build-system (system-name)
42 "Name of the system on which Emacs was built, or nil if not available.") 40 "Name of the system on which Emacs was built, or nil if not available.")