From: David Vazquez Date: Wed, 26 Dec 2012 15:40:06 +0000 (+0000) Subject: Fix make-symbol X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=f4699ac2eafe50983f20eb86e987eb3e2a9d9b8e;p=jscl.git Fix make-symbol --- diff --git a/lispstrack.lisp b/lispstrack.lisp index 98f7bc0..730cad6 100644 --- a/lispstrack.lisp +++ b/lispstrack.lisp @@ -890,7 +890,7 @@ "; return (typeof tmp == 'object' && 'name' in tmp); })()"))) (define-compilation make-symbol (name) - (concat "{name: " (ls-compile name env fenv) "}")) + (concat "({name: " (ls-compile name env fenv) "})")) (define-compilation symbol-name (x) (concat "(" (ls-compile x env fenv) ").name"))