From: Stefan Monnier Date: Mon, 16 Mar 2020 17:12:52 +0000 (-0400) Subject: * etc/NEWS: Make the `--eval` example slightly more precise X-Git-Tag: emacs-27.0.91~74 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a7b8291b6c97de10cd8f6a559987a6cda8fa3d9a;p=emacs.git * etc/NEWS: Make the `--eval` example slightly more precise --- diff --git a/etc/NEWS b/etc/NEWS index 61fb0832568..b41541c715f 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -368,7 +368,7 @@ lexical-binding in mind, or will work unchanged under lexical-binding. If, for some reason, your code used in 'M-:' or '--eval' doesn't work as result of this change, either modify the code to work with lexical binding, or wrap it in an extra level of 'eval'. -For example, --eval FORM becomes --eval "(eval 'FORM)" (note the extra +For example, --eval "FORM" becomes --eval "(eval 'FORM)" (note the extra quote in 'FORM). ---