From: David Vázquez Date: Sun, 23 Jun 2013 19:32:25 +0000 (+0200) Subject: Migrate LAMBDA-CODE X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=9975f8e57c330407a3ac453f8c4ea3b398fecb81;p=jscl.git Migrate LAMBDA-CODE --- diff --git a/src/compiler.lisp b/src/compiler.lisp index 1a7c3ad..1d9489b 100644 --- a/src/compiler.lisp +++ b/src/compiler.lisp @@ -1157,7 +1157,7 @@ `(or (get ,x "plist") ,(ls-compile nil))) (define-builtin lambda-code (x) - `(code "make_lisp_string((" ,x ").toString())")) + `(call |make_lisp_string| (call (get ,x "toString")))) (define-builtin eq (x y) (js!bool `(code "(" ,x " === " ,y ")")))