diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-17 18:12:38 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-17 18:12:38 +0200 |
commit | a53c34d76a09cd6519d2d176b76d4b820bc26a51 (patch) | |
tree | 0874d73f8924e500efcbecb834d5a7038c6d4bfc /lisp/emacs-lisp/byte-run.el | |
parent | 73e75e18d170826e1838324d39ac0698948071f8 (diff) | |
download | emacs-a53c34d76a09cd6519d2d176b76d4b820bc26a51.tar.gz emacs-a53c34d76a09cd6519d2d176b76d4b820bc26a51.tar.bz2 emacs-a53c34d76a09cd6519d2d176b76d4b820bc26a51.zip |
Don't quote the `when' form in obsoletions
* lisp/emacs-lisp/byte-run.el (byte-run--set-obsolete): The `when'
is a string (or nil), so don't quote it (bug#48145).
* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate--print-form):
Adjust folding.
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 17c15549666..498435c58d0 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -166,7 +166,7 @@ The return value of this function is not used." (defalias 'byte-run--set-obsolete #'(lambda (f _args new-name when) (list 'make-obsolete - (list 'quote f) (list 'quote new-name) (list 'quote when)))) + (list 'quote f) (list 'quote new-name) when))) (defalias 'byte-run--set-interactive-only #'(lambda (f _args instead) |