aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/emacs-lisp/byte-run.el3
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 39bc71e8e13..def47702a73 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12013-03-13 Stefan Monnier <monnier@iro.umontreal.ca> 12013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
4 backquotes for `obsolete' (bug#13929).
5
3 * international/mule.el (find-auto-coding): Include file name in 6 * international/mule.el (find-auto-coding): Include file name in
4 obsolescence warning (bug#13922). 7 obsolescence warning (bug#13922).
5 8
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."
79 (list 'quote f) (list 'quote arglist) (list 'quote when)))) 79 (list 'quote f) (list 'quote arglist) (list 'quote when))))
80 (list 'obsolete 80 (list 'obsolete
81 #'(lambda (f _args new-name when) 81 #'(lambda (f _args new-name when)
82 `(make-obsolete ',f ',new-name ,when))) 82 (list 'make-obsolete
83 (list 'quote f) (list 'quote new-name) (list 'quote when))))
83 (list 'compiler-macro 84 (list 'compiler-macro
84 #'(lambda (f args compiler-function) 85 #'(lambda (f args compiler-function)
85 ;; FIXME: Make it possible to just reuse `args'. 86 ;; FIXME: Make it possible to just reuse `args'.