projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
0714f02
)
Fix off-by-two error in keyword argument processing.
author
Olof-Joachim Frahm
<olof@macrolet.net>
Sat, 15 Jun 2013 08:59:25 +0000
(10:59 +0200)
committer
Olof-Joachim Frahm
<olof@macrolet.net>
Sat, 15 Jun 2013 09:41:42 +0000
(11:41 +0200)
src/compiler.lisp
patch
|
blob
|
history
diff --git
a/src/compiler.lisp
b/src/compiler.lisp
index
071873d
..
39234c1
100644
(file)
--- a/
src/compiler.lisp
+++ b/
src/compiler.lisp
@@
-377,7
+377,7
@@
" && ")
")" *newline*
(indent
" && ")
")" *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)
"}" *newline*)))))
(defun parse-lambda-list (ll)