From: Michael Albinus Date: Sat, 20 May 2023 12:00:56 +0000 (+0200) Subject: ; * etc/NEWS: Fix typos. X-Git-Tag: emacs-29.0.92~126 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6bddd176582f8bea79ec77e1e27bb583a6ef0b5;p=emacs.git ; * etc/NEWS: Fix typos. --- diff --git a/etc/NEWS b/etc/NEWS index cdad1796e77..379ddbde072 100644 --- 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)