From 212fbd1d22b6db5db34ca864bc4a1cc5a420a187 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 4 Jun 2008 22:59:49 +0200 Subject: [PATCH] In methods function's type declarations, the type and the name were swapped --- src/clos/method.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clos/method.lsp b/src/clos/method.lsp index f3c5a3f19..aca955b84 100644 --- a/src/clos/method.lsp +++ b/src/clos/method.lsp @@ -82,7 +82,7 @@ (nconc (loop for name in required-parameters for type in specializers when (and (not (eq type t)) (symbolp type)) - nconc `((type ,name ,type) + nconc `((type ,type ,name) (si::no-check-type ,name))) (cdar declarations))) (method-lambda