[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 5cace109d2b 2/2: ; * etc/NEWS: Fix typos.
From: |
Michael Albinus |
Subject: |
master 5cace109d2b 2/2: ; * etc/NEWS: Fix typos. |
Date: |
Wed, 31 May 2023 02:45:33 -0400 (EDT) |
branch: master
commit 5cace109d2bce98a7d486e44378286031465f40f
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>
; * etc/NEWS: Fix typos.
---
etc/NEWS | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/etc/NEWS b/etc/NEWS
index 80e997d420f..9529282f047 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -31,7 +31,8 @@ applies, and please also update docstrings as needed.
* Changes in Emacs 30.1
** Help
-** 'describe-function' shows function inferred type when available.
+
+*** 'describe-function' shows function inferred type when available.
For native compiled Lisp functions 'describe-function' prints (after
the signature) the automatically inferred function type as well.
@@ -302,7 +303,7 @@ project, that you can quickly select using
'project-switch-project'
---
*** New user option 'package-vc-allow-side-effects'.
When non-nil, package specifications with side-effects for building
-software will used when building a package.
+software will be used when building a package.
** Flymake
@@ -344,7 +345,7 @@ This keyword enables the user to install packages using
'package-vc'.
*** New commands for reading mailing lists.
The new Rmail commands 'rmail-mailing-list-post',
'rmail-mailing-list-unsubscribe', 'rmail-mailing-list-help', and
-'rmail-mailing-list-archive allow to, respectively, post to,
+'rmail-mailing-list-archive' allow to, respectively, post to,
unsubscribe from, request help about, and browse the archives, of the
mailing list from which the current email message was delivered.
@@ -354,8 +355,8 @@ mailing list from which the current email message was
delivered.
*** New user option 'dictionary-search-interface'.
Controls how the 'dictionary-search' command prompts for and displays
dictionary definitions. Customize this user option to 'help' to have
-'dictionary-search' display definitions in a *Help* buffer and provide
-dictionary-based minibuffer completion for word selection.
+'dictionary-search' display definitions in a "*Help*" buffer and
+provide dictionary-based minibuffer completion for word selection.
---
*** New user option 'dictionary-read-word-prompt'.
@@ -370,8 +371,8 @@ displays word definitions. If non-nil, this user option
should be set
to a function that displays a word definition obtained from a
dictionary server. The new function
'dictionary-display-definition-in-help-buffer' can be used to display
-the definition in a *Help* buffer, instead of the default *Dictionary*
-buffer.
+the definition in a "*Help*" buffer, instead of the default
+"*Dictionary*" buffer.
---
*** New user option 'dictionary-read-word-function'.
@@ -391,7 +392,6 @@ name as a string. The new function
'dictionary-completing-read-dictionary' can be used to prompt with
completion based on dictionaries that the server supports.
-
* New Modes and Packages in Emacs 30.1
@@ -455,8 +455,8 @@ hooks named after the feature name, like
'esh-mode-unload-hook'.
* Lisp Changes in Emacs 30.1
+++
-** New variable 'safe-local-variable-directories'.
-This variable names directories in which Emacs will treat all
+** New user option 'safe-local-variable-directories'.
+This user option names directories in which Emacs will treat all
directory-local variables as safe.
** New variable 'inhibit-auto-fill' to temporarily prevent auto-fill.
@@ -592,7 +592,7 @@ some obvious cases. Examples:
(aset [3 4] 0 8)
(aset "abc" 1 ?d)
-Such code may have unpredictable behaviour because the constants are
+Such code may have unpredictable behavior because the constants are
part of the program, not data structures generated afresh during
execution, and the compiler does not expect them to change.