1
0
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:
Stefan Monnier 2013-03-12 22:19:31 -04:00
parent 175600dafc
commit e7f7cb1aa3
2 changed files with 5 additions and 1 deletions

View File

@ -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).

View File

@ -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'.