* emacs-lisp/advice.el (ad-set-orig-definition): Fix typo (Bug#3541).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 23 Jan 2010 23:05:16 +0000 (18:05 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 23 Jan 2010 23:05:16 +0000 (18:05 -0500)
lisp/ChangeLog
lisp/emacs-lisp/advice.el

index c87a049..cee1542 100644 (file)
@@ -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>
 
index bac24b6..003f70e 100644 (file)
@@ -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)))