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/emacs-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/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/advice.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |