From ba609c48b83ab6191a8572f7d0a5bb5122d51731 Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Sat, 15 Jun 2013 10:59:25 +0200 Subject: [PATCH] Fix off-by-two error in keyword argument processing. --- src/compiler.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.lisp b/src/compiler.lisp index 071873d..39234c1 100644 --- a/src/compiler.lisp +++ b/src/compiler.lisp @@ -377,7 +377,7 @@ " && ") ")" *newline* (indent - "throw 'Unknown keyword argument ' + xstring(arguments[i].name);" *newline*)) + "throw 'Unknown keyword argument ' + xstring(arguments[i+2].name);" *newline*)) "}" *newline*))))) (defun parse-lambda-list (ll) -- 1.7.10.4