]> git.eshelyaron.com Git - emacs.git/commitdiff
; * etc/NEWS: Fix typos.
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 20 May 2023 12:00:56 +0000 (14:00 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 20 May 2023 12:00:56 +0000 (14:00 +0200)
etc/NEWS

index cdad1796e777b452e629ad3f4d95f89eafc22a4a..379ddbde0725dda8dc0a0146c25ea71bacd328c0 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1844,10 +1844,10 @@ this includes "binary" buffers like 'archive-mode' and 'image-mode'.
 
 +++
 *** New command 'package-upgrade'.
-This command allows you to upgrade packages without using 'M-x
-list-packages'.  A package that comes with the Emacs distribution can
-only be upgraded after you install, once, a newer version from ELPA
-via the package-menu displayed by 'list-packages'.
+This command allows you to upgrade packages without using 'list-packages'.
+A package that comes with the Emacs distribution can only be upgraded
+after you install, once, a newer version from ELPA via the
+package-menu displayed by 'list-packages'.
 
 +++
 *** New command 'package-upgrade-all'.
@@ -1908,10 +1908,10 @@ enabled.
 
 In addition, when this option is non-nil, built-in packages for which
 a new version is available in archives can be upgraded via the package
-menu produced by 'M-x list-packages'.  If you do set this option
-non-nil, we recommend not to use the 'U' command, but instead to use
-'/ u' to show the packages which can be upgraded, and then decide
-which ones of them you actually want to update from the archives.
+menu produced by 'list-packages'.  If you do set this option non-nil,
+we recommend not to use the 'U' command, but instead to use '/ u' to
+show the packages which can be upgraded, and then decide which ones of
+them you actually want to update from the archives.
 
 If you customize this option, we recommend you place its non-default
 setting in your early-init file.
@@ -3872,11 +3872,11 @@ The following generalized variables have been made obsolete:
 'window-height', 'window-width', and 'x-get-secondary-selection'.
 
 ---
-** The 'dotimes' loop variable can no longer be manipulated in loop body
+** The 'dotimes' loop variable can no longer be manipulated in loop body.
 Previously, the 'dotimes' loop counter could be modified inside the
-loop body, but only in code using dynamic binding.  Now the behaviour
+loop body, but only in code using dynamic binding.  Now the behavior
 is the same as when using lexical binding: changes to the loop
-variable has no effect on subsequent iterations.  That is,
+variable have no effect on subsequent iterations.  That is,
 
     (dotimes (i 10)
       (print i)