diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-03-12 22:19:31 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-03-12 22:19:31 -0400 |
commit | e7f7cb1aa3beb791d3175e30f1b5e40985cba413 (patch) | |
tree | 8ac1fd7a2bf327ee345331bc8b9853c988c48aeb /lisp/emacs-lisp | |
parent | 175600dafc370c425502f0e6017deb2604c7e84f (diff) | |
download | emacs-e7f7cb1aa3beb791d3175e30f1b5e40985cba413.tar.gz emacs-e7f7cb1aa3beb791d3175e30f1b5e40985cba413.tar.bz2 emacs-e7f7cb1aa3beb791d3175e30f1b5e40985cba413.zip |
* lisp/emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
backquotes for `obsolete'.
Fixes: debbugs:13929
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 7e1f89871f1..8f0999b2f80 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -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'. |