aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2023-05-20 14:00:56 +0200
committerMichael Albinus2023-05-20 14:00:56 +0200
commita6bddd176582f8bea79ec77e1e27bb583a6ef0b5 (patch)
tree45028dd1afd6f1c8d55490b3c4922f867c06fbbd
parentf49fe936abd48f7458596893d25e3300f59508be (diff)
downloademacs-a6bddd176582f8bea79ec77e1e27bb583a6ef0b5.tar.gz
emacs-a6bddd176582f8bea79ec77e1e27bb583a6ef0b5.zip
; * etc/NEWS: Fix typos.
-rw-r--r--etc/NEWS22
1 files changed, 11 insertions, 11 deletions
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'.
1844 1844
1845+++ 1845+++
1846*** New command 'package-upgrade'. 1846*** New command 'package-upgrade'.
1847This command allows you to upgrade packages without using 'M-x 1847This command allows you to upgrade packages without using 'list-packages'.
1848list-packages'. A package that comes with the Emacs distribution can 1848A package that comes with the Emacs distribution can only be upgraded
1849only be upgraded after you install, once, a newer version from ELPA 1849after you install, once, a newer version from ELPA via the
1850via the package-menu displayed by 'list-packages'. 1850package-menu displayed by 'list-packages'.
1851 1851
1852+++ 1852+++
1853*** New command 'package-upgrade-all'. 1853*** New command 'package-upgrade-all'.
@@ -1908,10 +1908,10 @@ enabled.
1908 1908
1909In addition, when this option is non-nil, built-in packages for which 1909In addition, when this option is non-nil, built-in packages for which
1910a new version is available in archives can be upgraded via the package 1910a new version is available in archives can be upgraded via the package
1911menu produced by 'M-x list-packages'. If you do set this option 1911menu produced by 'list-packages'. If you do set this option non-nil,
1912non-nil, we recommend not to use the 'U' command, but instead to use 1912we recommend not to use the 'U' command, but instead to use '/ u' to
1913'/ u' to show the packages which can be upgraded, and then decide 1913show the packages which can be upgraded, and then decide which ones of
1914which ones of them you actually want to update from the archives. 1914them you actually want to update from the archives.
1915 1915
1916If you customize this option, we recommend you place its non-default 1916If you customize this option, we recommend you place its non-default
1917setting in your early-init file. 1917setting in your early-init file.
@@ -3872,11 +3872,11 @@ The following generalized variables have been made obsolete:
3872'window-height', 'window-width', and 'x-get-secondary-selection'. 3872'window-height', 'window-width', and 'x-get-secondary-selection'.
3873 3873
3874--- 3874---
3875** The 'dotimes' loop variable can no longer be manipulated in loop body 3875** The 'dotimes' loop variable can no longer be manipulated in loop body.
3876Previously, the 'dotimes' loop counter could be modified inside the 3876Previously, the 'dotimes' loop counter could be modified inside the
3877loop body, but only in code using dynamic binding. Now the behaviour 3877loop body, but only in code using dynamic binding. Now the behavior
3878is the same as when using lexical binding: changes to the loop 3878is the same as when using lexical binding: changes to the loop
3879variable has no effect on subsequent iterations. That is, 3879variable have no effect on subsequent iterations. That is,
3880 3880
3881 (dotimes (i 10) 3881 (dotimes (i 10)
3882 (print i) 3882 (print i)