mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-04 08:47:11 +00:00
* 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
@ -1,5 +1,8 @@
|
||||
2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
|
||||
backquotes for `obsolete' (bug#13929).
|
||||
|
||||
* international/mule.el (find-auto-coding): Include file name in
|
||||
obsolescence warning (bug#13922).
|
||||
|
||||
|
@ -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…
Reference in New Issue
Block a user