* lisp/emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
backquotes for `obsolete'. Fixes: debbugs:13929
This commit is contained in:
parent
175600dafc
commit
e7f7cb1aa3
2 changed files with 5 additions and 1 deletions
|
@ -79,7 +79,8 @@ The return value of this function is not used."
|
|||
(list 'quote f) (list 'quote arglist) (list 'quote when))))
|
||||
(list 'obsolete
|
||||
#'(lambda (f _args new-name when)
|
||||
`(make-obsolete ',f ',new-name ,when)))
|
||||
(list 'make-obsolete
|
||||
(list 'quote f) (list 'quote new-name) (list 'quote when))))
|
||||
(list 'compiler-macro
|
||||
#'(lambda (f args compiler-function)
|
||||
;; FIXME: Make it possible to just reuse `args'.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue