* etc/NEWS: Make the --eval example slightly more precise

This commit is contained in:
Stefan Monnier 2020-03-16 13:12:52 -04:00
parent f8254aad14
commit a7b8291b6c

View file

@ -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).
---