diff options
| author | Stefan Kangas | 2022-09-16 16:16:32 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-09-16 16:19:44 +0200 |
| commit | 562c19609971a809d3bb42f76d18ba7f3659d254 (patch) | |
| tree | 36a53caee6b036cba9f895e49aab1999076e7fa9 | |
| parent | f232d989fd90dc35b647da9db152d70b421f35a9 (diff) | |
| download | emacs-562c19609971a809d3bb42f76d18ba7f3659d254.tar.gz emacs-562c19609971a809d3bb42f76d18ba7f3659d254.zip | |
; * etc/NEWS: Backport fixes from master.
Don't merge to master.
| -rw-r--r-- | etc/NEWS | 11 |
1 files changed, 9 insertions, 2 deletions
| @@ -1686,7 +1686,7 @@ and variables. | |||
| 1686 | 1686 | ||
| 1687 | *** Lisp mode now uses 'common-lisp-indent-function'. | 1687 | *** Lisp mode now uses 'common-lisp-indent-function'. |
| 1688 | To revert to the previous behavior, | 1688 | To revert to the previous behavior, |
| 1689 | '(setq lisp-indent-function 'lisp-indent-function)' from 'lisp-mode-hook'. | 1689 | '(setq lisp-indent-function #'lisp-indent-function)' from 'lisp-mode-hook'. |
| 1690 | 1690 | ||
| 1691 | ** Change Logs and VC | 1691 | ** Change Logs and VC |
| 1692 | 1692 | ||
| @@ -2835,7 +2835,7 @@ different timezone causing a difference in the date. | |||
| 2835 | 2835 | ||
| 2836 | *** 'mspools-show' is now autoloaded. | 2836 | *** 'mspools-show' is now autoloaded. |
| 2837 | 2837 | ||
| 2838 | *** Loading dunnet.el in batch mode doesn't start the game any more. | 2838 | *** Loading 'dunnet' in batch mode doesn't start the game any more. |
| 2839 | Instead you need to do "emacs --batch -f dunnet" to start the game in | 2839 | Instead you need to do "emacs --batch -f dunnet" to start the game in |
| 2840 | batch mode. | 2840 | batch mode. |
| 2841 | 2841 | ||
| @@ -3615,6 +3615,13 @@ pairs. | |||
| 3615 | ** New function 'mail-header-parse-address-lax'. | 3615 | ** New function 'mail-header-parse-address-lax'. |
| 3616 | Parse a string as a mail address-like string. | 3616 | Parse a string as a mail address-like string. |
| 3617 | 3617 | ||
| 3618 | ** New function 'make-closure'. | ||
| 3619 | This function is used internally by the byte-compiler: calls to it are | ||
| 3620 | inserted into the generated bytecode to handle closures more | ||
| 3621 | efficiently than the old code which relied on | ||
| 3622 | 'make-byte-code' instead. | ||
| 3623 | It also makes the disassembly more readable. | ||
| 3624 | |||
| 3618 | ** New function 'make-separator-line'. | 3625 | ** New function 'make-separator-line'. |
| 3619 | Make a string appropriate for usage as a visual separator line. | 3626 | Make a string appropriate for usage as a visual separator line. |
| 3620 | 3627 | ||