From: David Vázquez Date: Wed, 19 Jun 2013 04:49:02 +0000 (+0200) Subject: Discard returned value of JS X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=029f174440587162d0ff182f73644d70e19e63a8;p=jscl.git Discard returned value of JS --- diff --git a/experimental/codegen.lisp b/experimental/codegen.lisp index b623b53..adf5de7 100644 --- a/experimental/codegen.lisp +++ b/experimental/codegen.lisp @@ -414,4 +414,5 @@ (js-format ";"))))) (defun js (&rest stmts) - (mapc #'js-stmt stmts)) + (mapc #'js-stmt stmts) + nil)