]> git.eshelyaron.com Git - emacs.git/commitdiff
* etc/NEWS.19: Add entry for `indent-line-to`
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 19 Jan 2021 17:53:42 +0000 (12:53 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 19 Jan 2021 17:53:42 +0000 (12:53 -0500)
* lisp/version.el (emacs-major-version, emacs-minor-version):
Remove redundant version info already displayed by `C-h o`.

etc/NEWS.19
lisp/version.el

index 43235e0e154cfd379bdfb6494038585723c343f7..f2cef62971bbe68aa6eb1db325cde627bcdf438f 100644 (file)
@@ -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
index fcfc2f8b806d0ab91f80444316755e470c473192..3a3093fdd4a9bcbd116593f4512886681394c612 100644 (file)
 (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.")