aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2017-09-09 00:50:53 -0700
committerPaul Eggert2017-09-09 15:30:07 -0700
commit3ef0c1648488c18f71b266bea2f3bfa8dbc68c98 (patch)
tree109e247c98e9fdb6a8beb52037a58f740e1b9a7d
parent19584f13b1e2e4a778602a8302619ef5c675e68b (diff)
downloademacs-3ef0c1648488c18f71b266bea2f3bfa8dbc68c98.tar.gz
emacs-3ef0c1648488c18f71b266bea2f3bfa8dbc68c98.zip
* etc/NEWS.25: Document 25.3 changes.
-rw-r--r--etc/NEWS.2531
1 files changed, 31 insertions, 0 deletions
diff --git a/etc/NEWS.25 b/etc/NEWS.25
index 539e56e42a0..db448fd61ac 100644
--- a/etc/NEWS.25
+++ b/etc/NEWS.25
@@ -16,6 +16,37 @@ You can narrow news to a specific version by calling 'view-emacs-news'
16with a prefix argument or by typing C-u C-h C-n. 16with a prefix argument or by typing C-u C-h C-n.
17 17
18 18
19* Changes in Emacs 25.3
20
21This is mainly a release to fix security-relevant bugs.
22
23** Enriched text mode no longer supports the 'FUNCTION' and 'display'
24translations, and Gnus no longer processes enriched text when
25inlining. This fixes bugs introduced in Emacs 19.29. To work around
26these bugs in Emacs versions 19.29 through 25.2, append the following
27to your ~/.emacs file:
28
29 (provide 'enriched)
30 (defun enriched-mode (&optional arg))
31 (defun enriched-decode (from to))
32
33Thanks to Charles A. Roelli for reporting this bug; see:
34https://bugs.gnu.org/28350
35
36** TLS/SSL connections no longer fall back on the openssl s_client
37command to set up SSL connections in some hopefully-unlikely cases.
38This fixes a bug introduced in Emacs 22.1. To work around this bug in
39Emacs versions 22.1 through 25.2, append the following to your
40~/.emacs file:
41
42 (setq tls-program '("gnutls-cli --x509cafile %t -p %p %h"))
43
44You may need to omit the "--x509cafile %t" on older installations.
45
46Thanks to Kurt Roeckx for reporting this bug to Debian; see:
47https://bugs.debian.org/766397
48
49
19* Changes in Emacs 25.2 50* Changes in Emacs 25.2
20 51
21This is mainly a bug-fix release, but there are some other changes. 52This is mainly a bug-fix release, but there are some other changes.