aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJoakim Verona2011-06-23 01:28:30 +0200
committerJoakim Verona2011-06-23 01:28:30 +0200
commitc5082a753011dacef505e91f1fc30a84fa75a2eb (patch)
tree2c995eff276b6e9e68f54b4ebe76bf012231c86d /etc
parent787c27e81f046cfa1c457ed405551f8ca0ddb0e8 (diff)
parent297dde5a97c0c5c8020db72213c7f84067f1ee21 (diff)
downloademacs-c5082a753011dacef505e91f1fc30a84fa75a2eb.tar.gz
emacs-c5082a753011dacef505e91f1fc30a84fa75a2eb.zip
merge upstream
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS31
2 files changed, 34 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 109124af4ee..062edbe42a4 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12011-06-21 Leo Liu <sdl.web@gmail.com>
2
3 * NEWS: Mention the new primtive secure-hash.
4
12011-06-14 Chong Yidong <cyd@stupidchicken.com> 52011-06-14 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * themes/dichromacy-theme.el: New theme. 7 * themes/dichromacy-theme.el: New theme.
diff --git a/etc/NEWS b/etc/NEWS
index dad42e14f02..243058a46b2 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -109,6 +109,26 @@ and pops down the *Completions* buffer accordingly.
109 109
110** auto-mode-case-fold is now enabled by default. 110** auto-mode-case-fold is now enabled by default.
111 111
112** smtpmail changes
113
114** smtpmail has been largely rewritten to upgrade to STARTTLS if
115possible, and uses the auth-source framework for getting credentials.
116The rewrite should be largely compatible with previous versions of
117smtpmail, but there are two major incompatibilities:
118
119** `smtpmail-auth-credentials' no longer exists. That variable could
120be either ~/.authinfo (in which case you're fine -- you won't see any
121difference), but if it were a direct list of user names and passwords,
122you will be prompted for the user name and the password instead, and
123they will then be saved to ~/.authinfo.
124
125** Similarly, if you had `smtpmail-starttls-credentials' set, then
126then you need to put
127
128machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
129
130in your ~/.authinfo file instead.
131
112** Internationalization changes 132** Internationalization changes
113 133
114+++ 134+++
@@ -305,10 +325,16 @@ If you need it, feedmail.el ought to provide a superset of the functionality.
305 325
306** The variable `focus-follows-mouse' now always defaults to nil. 326** The variable `focus-follows-mouse' now always defaults to nil.
307 327
308** Function `sha1' is now implemented in C for speed. 328** New primitive `secure-hash' that supports many secure hash algorithms
329including md5, sha-1 and sha-2 (sha-224, sha-256, sha-384 and sha-512).
309The elisp implementation sha1.el is removed. Feature sha1 is provided 330The elisp implementation sha1.el is removed. Feature sha1 is provided
310by default. 331by default.
311 332
333** Menu-bar changes
334
335*** `menu-bar-select-buffer-function' lets you choose another operation
336instead of `switch-to-buffer' when selecting an item in the Buffers menu.
337
312 338
313* Editing Changes in Emacs 24.1 339* Editing Changes in Emacs 24.1
314 340
@@ -1051,6 +1077,9 @@ deferring warnings until the main command loop is executed.
1051** `set-auto-mode' now respects mode: local variables at the end of files, 1077** `set-auto-mode' now respects mode: local variables at the end of files,
1052as well as those in the -*- line. 1078as well as those in the -*- line.
1053 1079
1080---
1081** rx.el has a new `group-n' construct for explicitly numbered groups.
1082
1054 1083
1055* Changes in Emacs 24.1 on non-free operating systems 1084* Changes in Emacs 24.1 on non-free operating systems
1056 1085