diff options
| author | Michael Albinus | 2023-05-20 14:00:56 +0200 |
|---|---|---|
| committer | Michael Albinus | 2023-05-20 14:00:56 +0200 |
| commit | a6bddd176582f8bea79ec77e1e27bb583a6ef0b5 (patch) | |
| tree | 45028dd1afd6f1c8d55490b3c4922f867c06fbbd | |
| parent | f49fe936abd48f7458596893d25e3300f59508be (diff) | |
| download | emacs-a6bddd176582f8bea79ec77e1e27bb583a6ef0b5.tar.gz emacs-a6bddd176582f8bea79ec77e1e27bb583a6ef0b5.zip | |
; * etc/NEWS: Fix typos.
| -rw-r--r-- | etc/NEWS | 22 |
1 files changed, 11 insertions, 11 deletions
| @@ -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'. |
| 1847 | This command allows you to upgrade packages without using 'M-x | 1847 | This command allows you to upgrade packages without using 'list-packages'. |
| 1848 | list-packages'. A package that comes with the Emacs distribution can | 1848 | A package that comes with the Emacs distribution can only be upgraded |
| 1849 | only be upgraded after you install, once, a newer version from ELPA | 1849 | after you install, once, a newer version from ELPA via the |
| 1850 | via the package-menu displayed by 'list-packages'. | 1850 | package-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 | ||
| 1909 | In addition, when this option is non-nil, built-in packages for which | 1909 | In addition, when this option is non-nil, built-in packages for which |
| 1910 | a new version is available in archives can be upgraded via the package | 1910 | a new version is available in archives can be upgraded via the package |
| 1911 | menu produced by 'M-x list-packages'. If you do set this option | 1911 | menu produced by 'list-packages'. If you do set this option non-nil, |
| 1912 | non-nil, we recommend not to use the 'U' command, but instead to use | 1912 | we 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 | 1913 | show the packages which can be upgraded, and then decide which ones of |
| 1914 | which ones of them you actually want to update from the archives. | 1914 | them you actually want to update from the archives. |
| 1915 | 1915 | ||
| 1916 | If you customize this option, we recommend you place its non-default | 1916 | If you customize this option, we recommend you place its non-default |
| 1917 | setting in your early-init file. | 1917 | setting 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. |
| 3876 | Previously, the 'dotimes' loop counter could be modified inside the | 3876 | Previously, the 'dotimes' loop counter could be modified inside the |
| 3877 | loop body, but only in code using dynamic binding. Now the behaviour | 3877 | loop body, but only in code using dynamic binding. Now the behavior |
| 3878 | is the same as when using lexical binding: changes to the loop | 3878 | is the same as when using lexical binding: changes to the loop |
| 3879 | variable has no effect on subsequent iterations. That is, | 3879 | variable have no effect on subsequent iterations. That is, |
| 3880 | 3880 | ||
| 3881 | (dotimes (i 10) | 3881 | (dotimes (i 10) |
| 3882 | (print i) | 3882 | (print i) |