aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris2020-03-18 07:50:37 -0700
committerGlenn Morris2020-03-18 07:50:37 -0700
commit64d9b4cd762cd39749b899343cb4878e5998a170 (patch)
treed53ca326b506c75d3151a37ac35a199ae7c780e3 /etc
parentd815e1ea521aac866eb9c305b64a1d4486fea86f (diff)
parente92b8e535aa599fa4477578f3e5d0657e494fdd0 (diff)
downloademacs-64d9b4cd762cd39749b899343cb4878e5998a170.tar.gz
emacs-64d9b4cd762cd39749b899343cb4878e5998a170.zip
Merge from origin/emacs-27
e92b8e535a (origin/emacs-27) Remove raw carriage return characters fr... 5747a59a88 Recalculate default font when switching font backend a2dd8c4234 * lisp/tab-line.el: Fix tab-line-format and tab-line-forma... a7b8291b6c * etc/NEWS: Make the `--eval` example slightly more precise f8254aad14 * lisp/image/image-converter.el: Support more ImageMagick ... 5beb269505 Support Unicode 13.0 3a671ad7ed Fix regression in wisent-total-conflicts # Conflicts: # etc/NEWS
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS.275
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/NEWS.27 b/etc/NEWS.27
index 63003191699..b41541c715f 100644
--- a/etc/NEWS.27
+++ b/etc/NEWS.27
@@ -229,6 +229,9 @@ the new version of the file again.)
229 229
230* Changes in Emacs 27.1 230* Changes in Emacs 27.1
231 231
232---
233** Emacs now supports Unicode Standard version 13.0.
234
232+++ 235+++
233** Emacs now supports resizing and rotating images without ImageMagick. 236** Emacs now supports resizing and rotating images without ImageMagick.
234All modern systems support this feature. (On GNU and Unix systems, 237All modern systems support this feature. (On GNU and Unix systems,
@@ -365,7 +368,7 @@ lexical-binding in mind, or will work unchanged under
365lexical-binding. If, for some reason, your code used in 'M-:' or 368lexical-binding. If, for some reason, your code used in 'M-:' or
366'--eval' doesn't work as result of this change, either modify the code 369'--eval' doesn't work as result of this change, either modify the code
367to work with lexical binding, or wrap it in an extra level of 'eval'. 370to work with lexical binding, or wrap it in an extra level of 'eval'.
368For example, --eval FORM becomes --eval "(eval 'FORM)" (note the extra 371For example, --eval "FORM" becomes --eval "(eval 'FORM)" (note the extra
369quote in 'FORM). 372quote in 'FORM).
370 373
371--- 374---