From a898c9e295c84062379cda5cd42f113bee0138e2 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 29 Aug 2015 14:33:40 +0100 Subject: [PATCH] src/method-impl.lisp: Fix incorrect argument order. --- src/method-impl.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/method-impl.lisp b/src/method-impl.lisp index 8de19da..1cb9479 100644 --- a/src/method-impl.lisp +++ b/src/method-impl.lisp @@ -335,7 +335,7 @@ (funcall body target) (dolist (after (reverse after-methods)) (invoke-method codegen :void - after basic-tail))))))) + basic-tail after))))))) (invoke-delegation-chain codegen target basic-tail around-methods #'method-kernel))))) -- 2.11.0