Hi, since this came up I attached a one line patch for PS-INLINE, which
in the current form won't run, because COMPILE-EXPRESSION? is unbound.
Cheers,
Olof
--
The world is burning. Run.
diff --git a/src/compilation-interface.lisp b/src/compilation-interface.lisp
index 0d3ce46..ea43641 100644
--- a/src/compilation-interface.lisp
+++ b/src/compilation-interface.lisp
@@ -53,7 +53,7 @@ Body is evaluated."
(defmacro+ps ps-inline (form &optional (string-delimiter *js-inline-string-delimiter*))
`(concatenate 'string "javascript:"
,@(let ((*js-string-delimiter* string-delimiter))
- (parenscript-print (ps-compile form) nil))))
+ (parenscript-print (compile-statement form) nil))))
(defvar *ps-read-function* #'read)
_______________________________________________
parenscript-devel mailing list
[email protected]
http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel