Evaluate BODY with *yaclml-stream* bound to STREAM.
(defmacro with-yaclml-stream (stream &body body)
"Evaluate BODY with *yaclml-stream* bound to STREAM."
`(let ((*yaclml-stream* ,stream))
(declare (special *yaclml-stream*))
,@body))Source Context