aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS.2623
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
431want to reverse the direction of the scroll, customize 431want 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.
436This is to avoid bad behavior in some firewalls, which causes the
437connection 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
808where to place point after 'C-c M-r' and 'C-c M-s'. 813where to place point after 'C-c M-r' and 'C-c M-s'.
809 814
815+++
816*** New user option 'comint-terminfo-terminal'.
817This option allows control of the value of the TERM environment
818variable Emacs puts into the environment of the Comint mode and its
819derivatives, such as Shell mode and Compilation Shell minor-mode. The
820default 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
1462support, you should set 'eldoc-documentation-function' instead of 1474support, you should set 'eldoc-documentation-function' instead of
1463calling 'eldoc-message' directly. 1475calling 'eldoc-message' directly.
1464 1476
1477---
1478** Using '&rest' or '&optional' incorrectly is now an error.
1479For example giving '&optional' without a following variable, or
1480passing '&optional' multiple times:
1481
1482 (defun foo (&optional &rest x))
1483 (defun bar (&optional &optional x))
1484
1485Previously, Emacs would just ignore the extra keyword, or give
1486incorrect results in certain cases.
1487
1465 1488
1466* Lisp Changes in Emacs 26.1 1489* Lisp Changes in Emacs 26.1
1467 1490