diff options
| author | Joakim Verona | 2011-06-23 01:28:30 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-06-23 01:28:30 +0200 |
| commit | c5082a753011dacef505e91f1fc30a84fa75a2eb (patch) | |
| tree | 2c995eff276b6e9e68f54b4ebe76bf012231c86d /etc | |
| parent | 787c27e81f046cfa1c457ed405551f8ca0ddb0e8 (diff) | |
| parent | 297dde5a97c0c5c8020db72213c7f84067f1ee21 (diff) | |
| download | emacs-c5082a753011dacef505e91f1fc30a84fa75a2eb.tar.gz emacs-c5082a753011dacef505e91f1fc30a84fa75a2eb.zip | |
merge upstream
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 31 |
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 @@ | |||
| 1 | 2011-06-21 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * NEWS: Mention the new primtive secure-hash. | ||
| 4 | |||
| 1 | 2011-06-14 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-06-14 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * themes/dichromacy-theme.el: New theme. | 7 | * themes/dichromacy-theme.el: New theme. |
| @@ -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 | ||
| 115 | possible, and uses the auth-source framework for getting credentials. | ||
| 116 | The rewrite should be largely compatible with previous versions of | ||
| 117 | smtpmail, but there are two major incompatibilities: | ||
| 118 | |||
| 119 | ** `smtpmail-auth-credentials' no longer exists. That variable could | ||
| 120 | be either ~/.authinfo (in which case you're fine -- you won't see any | ||
| 121 | difference), but if it were a direct list of user names and passwords, | ||
| 122 | you will be prompted for the user name and the password instead, and | ||
| 123 | they will then be saved to ~/.authinfo. | ||
| 124 | |||
| 125 | ** Similarly, if you had `smtpmail-starttls-credentials' set, then | ||
| 126 | then you need to put | ||
| 127 | |||
| 128 | machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert" | ||
| 129 | |||
| 130 | in 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 |
| 329 | including md5, sha-1 and sha-2 (sha-224, sha-256, sha-384 and sha-512). | ||
| 309 | The elisp implementation sha1.el is removed. Feature sha1 is provided | 330 | The elisp implementation sha1.el is removed. Feature sha1 is provided |
| 310 | by default. | 331 | by default. |
| 311 | 332 | ||
| 333 | ** Menu-bar changes | ||
| 334 | |||
| 335 | *** `menu-bar-select-buffer-function' lets you choose another operation | ||
| 336 | instead 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, |
| 1052 | as well as those in the -*- line. | 1078 | as 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 | ||