Macro: WITH-*TEST-DRIBBLE*

Source

(defmacro with-*test-dribble* (stream &body body)
  `(let ((*test-dribble* ,stream))
     (declare (special *test-dribble*))
     ,@body))
Source Context