diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-01-23 18:05:16 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-01-23 18:05:16 -0500 |
commit | 02c6d0d0f29e6628d62910463e5800325f21aebf (patch) | |
tree | aa37a870577bb4084ffec8ff98635f20fddb162e /lisp | |
parent | e17d428f7a77b5428894e48dbc2927b04e75931b (diff) | |
download | emacs-02c6d0d0f29e6628d62910463e5800325f21aebf.tar.gz emacs-02c6d0d0f29e6628d62910463e5800325f21aebf.tar.bz2 emacs-02c6d0d0f29e6628d62910463e5800325f21aebf.zip |
* emacs-lisp/advice.el (ad-set-orig-definition): Fix typo (Bug#3541).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/emacs-lisp/advice.el | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c87a0495b91..cee15424814 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,12 @@ +2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change) + + * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo + (Bug#3541). + 2010-01-23 Chong Yidong <cyd@stupidchicken.com> - * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). - (aelement): Doc fix. + * emacs-lisp/assoc.el (aelement): Doc fix. + (aput, adelete, amake): Use lexical-let (Bug#5450). 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org> diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index bac24b63021..003f70ea4a5 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el @@ -2191,7 +2191,7 @@ Redefining advices affect the construction of an advised definition." (defmacro ad-set-orig-definition (function definition) `(ad-safe-fset - (ad-get-advice-info-field function 'origname) ,definition)) + (ad-get-advice-info-field ,function 'origname) ,definition)) (defmacro ad-clear-orig-definition (function) `(fmakunbound (ad-get-advice-info-field ,function 'origname))) |