aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-09-16 16:16:32 +0200
committerStefan Kangas2022-09-16 16:19:44 +0200
commit562c19609971a809d3bb42f76d18ba7f3659d254 (patch)
tree36a53caee6b036cba9f895e49aab1999076e7fa9
parentf232d989fd90dc35b647da9db152d70b421f35a9 (diff)
downloademacs-562c19609971a809d3bb42f76d18ba7f3659d254.tar.gz
emacs-562c19609971a809d3bb42f76d18ba7f3659d254.zip
; * etc/NEWS: Backport fixes from master.
Don't merge to master.
-rw-r--r--etc/NEWS11
1 files changed, 9 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 15854be8fd2..47e82a96e64 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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'.
1688To revert to the previous behavior, 1688To 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.
2839Instead you need to do "emacs --batch -f dunnet" to start the game in 2839Instead you need to do "emacs --batch -f dunnet" to start the game in
2840batch mode. 2840batch mode.
2841 2841
@@ -3615,6 +3615,13 @@ pairs.
3615** New function 'mail-header-parse-address-lax'. 3615** New function 'mail-header-parse-address-lax'.
3616Parse a string as a mail address-like string. 3616Parse a string as a mail address-like string.
3617 3617
3618** New function 'make-closure'.
3619This function is used internally by the byte-compiler: calls to it are
3620inserted into the generated bytecode to handle closures more
3621efficiently than the old code which relied on
3622'make-byte-code' instead.
3623It also makes the disassembly more readable.
3624
3618** New function 'make-separator-line'. 3625** New function 'make-separator-line'.
3619Make a string appropriate for usage as a visual separator line. 3626Make a string appropriate for usage as a visual separator line.
3620 3627