emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 039ab60: * etc/NEWS.19: Add entry for `indent-line-to`


From: Stefan Monnier
Subject: master 039ab60: * etc/NEWS.19: Add entry for `indent-line-to`
Date: Tue, 19 Jan 2021 12:53:47 -0500 (EST)

branch: master
commit 039ab602cbf877eef1b18c6ef8b36dcf52ece5c4
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * 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`.
---
 etc/NEWS.19     | 2 ++
 lisp/version.el | 6 ++----
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/etc/NEWS.19 b/etc/NEWS.19
index 43235e0..f2cef62 100644
--- a/etc/NEWS.19
+++ b/etc/NEWS.19
@@ -2824,6 +2824,8 @@ the text of the region according to the new value.
 the fill-column has been exceeded; the function can determine on its
 own whether filling (or justification) is necessary.
 
+**** New helper function 'indent-line-to'
+
 ** Processes
 
 *** process-tty-name is a new function that returns the name of the
diff --git a/lisp/version.el b/lisp/version.el
index fcfc2f8..3a3093f 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.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]