From 5b6da2fb81d3a9e059b6d92f091558536745cda7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20V=C3=A1zquez?= Date: Tue, 3 Sep 2013 21:24:51 +0200 Subject: [PATCH] Closes #145 fixing keyword dumping --- src/compiler/compiler.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compiler.lisp b/src/compiler/compiler.lisp index cf6bb55..4427cdd 100644 --- a/src/compiler/compiler.lisp +++ b/src/compiler/compiler.lisp @@ -516,7 +516,7 @@ (push (cons sexp jsvar) *literal-table*) (toplevel-compilation `(var (,jsvar ,dumped))) (when (keywordp sexp) - (toplevel-compilation `(= ,(get jsvar "value") ,jsvar))) + (toplevel-compilation `(= (get ,jsvar "value") ,jsvar))) jsvar))))))) -- 1.7.10.4