diff options
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS.26 | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/etc/NEWS.26 b/etc/NEWS.26 index 64b53d88c83..784c608041b 100644 --- a/etc/NEWS.26 +++ b/etc/NEWS.26 | |||
| @@ -431,6 +431,11 @@ You can enable this by customizing 'mwheel-tilt-scroll-p'. If you | |||
| 431 | want to reverse the direction of the scroll, customize | 431 | want to reverse the direction of the scroll, customize |
| 432 | 'mwheel-flip-direction'. | 432 | 'mwheel-flip-direction'. |
| 433 | 433 | ||
| 434 | +++ | ||
| 435 | ** The default GnuTLS priority string now includes %DUMBFW. | ||
| 436 | This is to avoid bad behavior in some firewalls, which causes the | ||
| 437 | connection to be closed by the remote host. | ||
| 438 | |||
| 434 | ** Emacsclient changes | 439 | ** Emacsclient changes |
| 435 | 440 | ||
| 436 | +++ | 441 | +++ |
| @@ -807,6 +812,13 @@ whose content matches a regexp; bound to '% g'. | |||
| 807 | *** New user option 'comint-move-point-for-matching-input' to control | 812 | *** New user option 'comint-move-point-for-matching-input' to control |
| 808 | where to place point after 'C-c M-r' and 'C-c M-s'. | 813 | where to place point after 'C-c M-r' and 'C-c M-s'. |
| 809 | 814 | ||
| 815 | +++ | ||
| 816 | *** New user option 'comint-terminfo-terminal'. | ||
| 817 | This option allows control of the value of the TERM environment | ||
| 818 | variable Emacs puts into the environment of the Comint mode and its | ||
| 819 | derivatives, such as Shell mode and Compilation Shell minor-mode. The | ||
| 820 | default is "dumb", for compatibility with previous behavior. | ||
| 821 | |||
| 810 | ** Compilation mode | 822 | ** Compilation mode |
| 811 | 823 | ||
| 812 | --- | 824 | --- |
| @@ -1462,6 +1474,17 @@ them through 'format' first. Even that is discouraged: for ElDoc | |||
| 1462 | support, you should set 'eldoc-documentation-function' instead of | 1474 | support, you should set 'eldoc-documentation-function' instead of |
| 1463 | calling 'eldoc-message' directly. | 1475 | calling 'eldoc-message' directly. |
| 1464 | 1476 | ||
| 1477 | --- | ||
| 1478 | ** Using '&rest' or '&optional' incorrectly is now an error. | ||
| 1479 | For example giving '&optional' without a following variable, or | ||
| 1480 | passing '&optional' multiple times: | ||
| 1481 | |||
| 1482 | (defun foo (&optional &rest x)) | ||
| 1483 | (defun bar (&optional &optional x)) | ||
| 1484 | |||
| 1485 | Previously, Emacs would just ignore the extra keyword, or give | ||
| 1486 | incorrect results in certain cases. | ||
| 1487 | |||
| 1465 | 1488 | ||
| 1466 | * Lisp Changes in Emacs 26.1 | 1489 | * Lisp Changes in Emacs 26.1 |
| 1467 | 1490 | ||