diff options
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 15 | ||||
| -rw-r--r-- | etc/NEWS | 35 |
2 files changed, 49 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 20779152050..0eb21406105 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,18 @@ | |||
| 1 | 2011-05-03 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * NEWS: Mention the new command isearch-yank-pop. | ||
| 4 | |||
| 5 | 2011-05-03 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 6 | |||
| 7 | * NEWS: Mention new library gnutls.el and explain GnuTLS | ||
| 8 | functionality. Mention new configure.bat options --without-gnutls | ||
| 9 | and --lib for W32. | ||
| 10 | |||
| 11 | 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 12 | |||
| 13 | * NEWS: Mention `url-retrieve-queue', (:file "file") and | ||
| 14 | `server-eval-at'. | ||
| 15 | |||
| 1 | 2011-04-28 Juanma Barranquero <lekktu@gmail.com> | 16 | 2011-04-28 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 17 | ||
| 3 | * NEWS: Document `delayed-warnings-list' and `delayed-warnings-hook'. | 18 | * NEWS: Document `delayed-warnings-list' and `delayed-warnings-hook'. |
| @@ -281,6 +281,10 @@ replaced with Lisp commands `doc-file-to-man' and `doc-file-to-info'. | |||
| 281 | *** C-y in Isearch is now bound to isearch-yank-kill, instead of | 281 | *** C-y in Isearch is now bound to isearch-yank-kill, instead of |
| 282 | isearch-yank-line. | 282 | isearch-yank-line. |
| 283 | 283 | ||
| 284 | --- | ||
| 285 | *** M-y in Isearch is now bound to isearch-yank-pop, instead of | ||
| 286 | isearch-yank-kill. | ||
| 287 | |||
| 284 | +++ | 288 | +++ |
| 285 | *** M-s C-e in Isearch is now bound to isearch-yank-line. | 289 | *** M-s C-e in Isearch is now bound to isearch-yank-line. |
| 286 | 290 | ||
| @@ -396,6 +400,9 @@ Just set shell-dir-cookie-re to an appropriate regexp. | |||
| 396 | ** browse-url has gotten a new variable that is used for mailto: URLs, | 400 | ** browse-url has gotten a new variable that is used for mailto: URLs, |
| 397 | `browse-url-mailto-function', which defaults to `browse-url-mail'. | 401 | `browse-url-mailto-function', which defaults to `browse-url-mail'. |
| 398 | 402 | ||
| 403 | ** `url-queue-retrieve' downloads web pages asynchronously, but allow | ||
| 404 | controlling the degree of parallelism. | ||
| 405 | |||
| 399 | ** Directory local variables can apply to file-less buffers, in certain modes | 406 | ** Directory local variables can apply to file-less buffers, in certain modes |
| 400 | (eg dired, vc-dir, log-edit). For example, adding | 407 | (eg dired, vc-dir, log-edit). For example, adding |
| 401 | "(diff-mode . ((mode . whitespace)))" to your .dir-locals.el file, | 408 | "(diff-mode . ((mode . whitespace)))" to your .dir-locals.el file, |
| @@ -822,6 +829,12 @@ Instead, the offending function is removed. | |||
| 822 | 829 | ||
| 823 | ** New low-level function run-hook-wrapped. | 830 | ** New low-level function run-hook-wrapped. |
| 824 | 831 | ||
| 832 | ** `server-eval-at' is provided to allow evaluating forms on different | ||
| 833 | Emacs server instances. | ||
| 834 | |||
| 835 | ** `call-process' allows a `(:file "file")' spec to redirect STDOUT to | ||
| 836 | a file. | ||
| 837 | |||
| 825 | ** byte-compile-disable-print-circle is obsolete. | 838 | ** byte-compile-disable-print-circle is obsolete. |
| 826 | ** deferred-action-list and deferred-action-function are obsolete. | 839 | ** deferred-action-list and deferred-action-function are obsolete. |
| 827 | ** Removed the stack-trace-on-error variable. | 840 | ** Removed the stack-trace-on-error variable. |
| @@ -894,7 +907,21 @@ Emacs Lisp parse tree. | |||
| 894 | 907 | ||
| 895 | FIXME: These should be front-ended by xml.el. | 908 | FIXME: These should be front-ended by xml.el. |
| 896 | 909 | ||
| 897 | ** FIXME GnuTLS | 910 | ** GnuTLS |
| 911 | |||
| 912 | *** Emacs can be compiled with libgnutls support | ||
| 913 | This is the default. You will then be able to use the functionality | ||
| 914 | in gnutls.el, namely the `open-gnutls-stream' and `gnutls-negotiate' | ||
| 915 | functions. It's easiest to use these functions through | ||
| 916 | `open-network-stream' because it can upgrade connections through | ||
| 917 | STARTTLS opportunistically or use plain SSL, depending on your needs. | ||
| 918 | |||
| 919 | Only versions 2.8.x and higher or GnuTLS have been tested. | ||
| 920 | |||
| 921 | *** gnutls-log-level | ||
| 922 | Set `gnutls-log-level' higher than 0 to get debug output. 1 is for | ||
| 923 | important messages, 2 is for debug data, and higher numbers are as per | ||
| 924 | the GnuTLS logging conventions. The output is in *Messages*. | ||
| 898 | 925 | ||
| 899 | ** Isearch | 926 | ** Isearch |
| 900 | 927 | ||
| @@ -922,6 +949,12 @@ runtime checks. | |||
| 922 | ** New configure.bat option --distfiles to specify files to be | 949 | ** New configure.bat option --distfiles to specify files to be |
| 923 | included in binary distribution. | 950 | included in binary distribution. |
| 924 | 951 | ||
| 952 | ** New configure.bat option --without-gnutls to disable automatic | ||
| 953 | GnuTLS detection. | ||
| 954 | |||
| 955 | ** New configure.bat option --lib for general library linkage, works | ||
| 956 | with the USER_LIBS build variable. | ||
| 957 | |||
| 925 | ** New make target `dist' to create binary distribution for MS Windows. | 958 | ** New make target `dist' to create binary distribution for MS Windows. |
| 926 | 959 | ||
| 927 | 960 | ||