]> git.eshelyaron.com Git - emacs.git/commitdiff
; * etc/NEWS: Fix wording of a recently-added entry.
authorEli Zaretskii <eliz@gnu.org>
Sat, 21 Oct 2023 15:18:11 +0000 (18:18 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 21 Oct 2023 15:18:11 +0000 (18:18 +0300)
etc/NEWS

index 609c3fa1596cf0744e7a97939b3405091c96c7dc..3810305e9f4c333d57c7a1f5777bf5a3f1d4459f 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1183,12 +1183,12 @@ It is needed to inform the compiler about which dialect of ELisp
 your code is using: the modern dialect with lexical binding or
 the old dialect with only dynamic binding.
 
-Lexical binding avoids some name conflicts and allows the compiler
-to detect more mistakes and generate more efficient code.  To adapt
-your code to lexical binding, see the "(elisp) Converting to Lexical
-Binding" section in the manual.
+Lexical binding avoids some name conflicts and allows the compiler to
+detect more mistakes and generate more efficient code, so it is
+recommended.  For how to adapt your code to lexical binding, see the
+manual section "(elisp) Converting to Lexical Binding".
 
-If you are unable to convert the code to lexical binding, you can insert
+If your code cannot be converted to lexical binding, you can insert
 the line
 
     ;;; -*- lexical-binding: nil -*-