From: Olof-Joachim Frahm Date: Sat, 15 Jun 2013 08:59:25 +0000 (+0200) Subject: Fix off-by-two error in keyword argument processing. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=ba609c48b83ab6191a8572f7d0a5bb5122d51731;p=jscl.git Fix off-by-two error in keyword argument processing. --- 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)