1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 14:40:54 -08:00

; * etc/NEWS: Backport fixes from master.

Don't merge to master.
This commit is contained in:
Stefan Kangas 2022-09-16 16:16:32 +02:00
parent f232d989fd
commit 562c196099

View file

@ -1686,7 +1686,7 @@ and variables.
*** Lisp mode now uses 'common-lisp-indent-function'.
To revert to the previous behavior,
'(setq lisp-indent-function 'lisp-indent-function)' from 'lisp-mode-hook'.
'(setq lisp-indent-function #'lisp-indent-function)' from 'lisp-mode-hook'.
** Change Logs and VC
@ -2835,7 +2835,7 @@ different timezone causing a difference in the date.
*** 'mspools-show' is now autoloaded.
*** Loading dunnet.el in batch mode doesn't start the game any more.
*** Loading 'dunnet' in batch mode doesn't start the game any more.
Instead you need to do "emacs --batch -f dunnet" to start the game in
batch mode.
@ -3615,6 +3615,13 @@ pairs.
** New function 'mail-header-parse-address-lax'.
Parse a string as a mail address-like string.
** New function 'make-closure'.
This function is used internally by the byte-compiler: calls to it are
inserted into the generated bytecode to handle closures more
efficiently than the old code which relied on
'make-byte-code' instead.
It also makes the disassembly more readable.
** New function 'make-separator-line'.
Make a string appropriate for usage as a visual separator line.