projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0965c7f
)
Fix bug in var initialization
author
David Vázquez
<davazp@gmail.com>
Mon, 24 Jun 2013 11:17:10 +0000
(13:17 +0200)
committer
David Vázquez
<davazp@gmail.com>
Mon, 24 Jun 2013 11:17:10 +0000
(13:17 +0200)
Test case:
(js '(var (x (call foo 1 2 3))))
src/compiler-codegen.lisp
patch
|
blob
|
history
diff --git
a/src/compiler-codegen.lisp
b/src/compiler-codegen.lisp
index
14113c6
..
6a3abc9
100644
(file)
--- a/
src/compiler-codegen.lisp
+++ b/
src/compiler-codegen.lisp
@@
-222,7
+222,7
@@
(js-expr (car args))
(js-format "(")
(when (cdr args)
- (with-operator (13 'left)
+ (with-operator (12 'left)
(js-expr (cadr args))
(dolist (operand (cddr args))
(let ((*js-output* t))