+++
*** 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'.
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.
'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)