diff options
| author | Rasmus | 2017-09-29 10:41:51 +0200 |
|---|---|---|
| committer | Rasmus | 2017-09-29 10:41:51 +0200 |
| commit | d4b2bbdc73ace5cb0971a32a75941486489d1cc5 (patch) | |
| tree | dc92eb83d4a66f112e3688ad10632e14ca6601ff /etc | |
| parent | eaefbc26d5c6cffbe4a22d3a9f4c7e6209a7b5a7 (diff) | |
| parent | af130f900fc499f71ea22f10ba055a75ce35ed4e (diff) | |
| download | emacs-d4b2bbdc73ace5cb0971a32a75941486489d1cc5.tar.gz emacs-d4b2bbdc73ace5cb0971a32a75941486489d1cc5.zip | |
Merge branch 'emacs-26' into scratch/org-mode-merge
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 36 |
1 files changed, 32 insertions, 4 deletions
| @@ -117,6 +117,11 @@ The effect is similar to that of "toolBar" resource on the tool bar. | |||
| 117 | 117 | ||
| 118 | * Changes in Emacs 26.1 | 118 | * Changes in Emacs 26.1 |
| 119 | 119 | ||
| 120 | +++ | ||
| 121 | ** Option 'buffer-offer-save' can be set to new value, 'always'. When | ||
| 122 | set to 'always', the command `save-some-buffers' will always offer | ||
| 123 | this buffer for saving. | ||
| 124 | |||
| 120 | ** Security vulnerability related to Enriched Text mode is removed. | 125 | ** Security vulnerability related to Enriched Text mode is removed. |
| 121 | 126 | ||
| 122 | +++ | 127 | +++ |
| @@ -144,8 +149,7 @@ init file: | |||
| 144 | 'save-buffer' process. Previously, saving a buffer that was not | 149 | 'save-buffer' process. Previously, saving a buffer that was not |
| 145 | visiting a file would always prompt for a file name. Now it only does | 150 | visiting a file would always prompt for a file name. Now it only does |
| 146 | so if 'write-contents-functions' is nil (or all its functions return | 151 | so if 'write-contents-functions' is nil (or all its functions return |
| 147 | nil). A non-nil buffer-local value for this variable is sufficient | 152 | nil). |
| 148 | for 'save-some-buffers' to consider the buffer for saving. | ||
| 149 | 153 | ||
| 150 | --- | 154 | --- |
| 151 | ** New variable 'executable-prefix-env' for inserting magic signatures. | 155 | ** New variable 'executable-prefix-env' for inserting magic signatures. |
| @@ -367,7 +371,7 @@ see the node "Connection Local Variables" in the ELisp manual. | |||
| 367 | puny.el library, so that one can visit Web sites with non-ASCII URLs. | 371 | puny.el library, so that one can visit Web sites with non-ASCII URLs. |
| 368 | 372 | ||
| 369 | +++ | 373 | +++ |
| 370 | ** The new 'timer-list' command lists all active timers in a buffer, | 374 | ** The new 'list-timers' command lists all active timers in a buffer, |
| 371 | where you can cancel them with the 'c' command. | 375 | where you can cancel them with the 'c' command. |
| 372 | 376 | ||
| 373 | +++ | 377 | +++ |
| @@ -578,7 +582,6 @@ Negative prefix arg flips the direction of selection. Also, | |||
| 578 | defun are selected unless they are separated from the defun by a blank | 582 | defun are selected unless they are separated from the defun by a blank |
| 579 | line. | 583 | line. |
| 580 | 584 | ||
| 581 | --- | ||
| 582 | ** New command 'replace-buffer-contents'. | 585 | ** New command 'replace-buffer-contents'. |
| 583 | This command replaces the contents of the accessible portion of the | 586 | This command replaces the contents of the accessible portion of the |
| 584 | current buffer with the contents of the accessible portion of a | 587 | current buffer with the contents of the accessible portion of a |
| @@ -701,6 +704,12 @@ method is an NNTP select method. | |||
| 701 | *** A new command for sorting articles by readedness marks has been | 704 | *** A new command for sorting articles by readedness marks has been |
| 702 | added: 'C-c C-s C-m C-m'. | 705 | added: 'C-c C-s C-m C-m'. |
| 703 | 706 | ||
| 707 | +++ | ||
| 708 | |||
| 709 | *** In message-citation-line-format the %Z format is now the time zone name | ||
| 710 | instead of the numeric form. The %z format continues to be the | ||
| 711 | numeric form. The new behavior is compatible with format-time-string. | ||
| 712 | |||
| 704 | ** Ibuffer | 713 | ** Ibuffer |
| 705 | 714 | ||
| 706 | --- | 715 | --- |
| @@ -1344,6 +1353,12 @@ non-nil, but the code returned the list in the increasing order of | |||
| 1344 | priority instead. Now the code does what the documentation says it | 1353 | priority instead. Now the code does what the documentation says it |
| 1345 | should do. | 1354 | should do. |
| 1346 | 1355 | ||
| 1356 | --- | ||
| 1357 | ** 'eldoc-message' only accepts one argument now. Programs that | ||
| 1358 | called it with multiple arguments before should pass them through | ||
| 1359 | 'format' first. Even that is discouraged: for ElDoc support, you | ||
| 1360 | should set 'eldoc-documentation-function' instead of calling | ||
| 1361 | 'eldoc-message' directly. | ||
| 1347 | 1362 | ||
| 1348 | * Lisp Changes in Emacs 26.1 | 1363 | * Lisp Changes in Emacs 26.1 |
| 1349 | 1364 | ||
| @@ -1813,6 +1828,13 @@ can be replicated simply by setting 'comment-auto-fill-only-comments'. | |||
| 1813 | ** New pcase pattern 'rx' to match against a rx-style regular expression. | 1828 | ** New pcase pattern 'rx' to match against a rx-style regular expression. |
| 1814 | For details, see the doc string of 'rx--pcase-macroexpander'. | 1829 | For details, see the doc string of 'rx--pcase-macroexpander'. |
| 1815 | 1830 | ||
| 1831 | --- | ||
| 1832 | ** New functions to set region from secondary selection and vice versa. | ||
| 1833 | The new functions 'secondary-selection-to-region' and | ||
| 1834 | 'secondary-selection-from-region' let you set the beginning and the | ||
| 1835 | end of the region from those of the secondary selection and vise | ||
| 1836 | versa. | ||
| 1837 | |||
| 1816 | 1838 | ||
| 1817 | * Changes in Emacs 26.1 on Non-Free Operating Systems | 1839 | * Changes in Emacs 26.1 on Non-Free Operating Systems |
| 1818 | 1840 | ||
| @@ -1876,6 +1898,12 @@ of frame decorations on macOS 10.9+. | |||
| 1876 | --- | 1898 | --- |
| 1877 | ** 'process-attributes' on Darwin systems now returns more information. | 1899 | ** 'process-attributes' on Darwin systems now returns more information. |
| 1878 | 1900 | ||
| 1901 | --- | ||
| 1902 | ** Mousewheel and trackpad scrolling on macOS 10.7+ now behaves more | ||
| 1903 | like the macOS default. The new variables 'ns-mwheel-line-height', | ||
| 1904 | 'ns-use-mwheel-acceleration' and 'ns-use-mwheel-momentum' can be used | ||
| 1905 | to customize the behavior. | ||
| 1906 | |||
| 1879 | 1907 | ||
| 1880 | ---------------------------------------------------------------------- | 1908 | ---------------------------------------------------------------------- |
| 1881 | This file is part of GNU Emacs. | 1909 | This file is part of GNU Emacs. |