Substantially modified the way Parenscript compilation and
[clinton/parenscript.git] / src / deprecated-interface.lisp
index dc1f2f6..4fd569f 100644 (file)
 (defun-js js* ps* (&rest args)
   (apply #'ps* args))
 
-(defun-js compile-script ps1* (ps-form &key (output-stream nil))
+(defun-js compile-script ps* (ps-form &key (output-stream nil))
   "Compiles the Parenscript form PS-FORM into Javascript.
 If OUTPUT-STREAM is NIL, then the result is a string; otherwise code
 is output to the OUTPUT-STREAM stream."
-  (format output-stream "~A" (ps1* ps-form)))
+  (format output-stream "~A" (ps* ps-form)))
 
 (defun-js symbol-to-js symbol-to-js-string (symbol)
   (symbol-to-js-string symbol))