<-Back

Macro: Gwl:With-Cl-Who

WITH-CL-WHO form

Sets up body to be evaluated with cl-who and output the resulting string to the default *stream* Note that the args are spliced into cl-who:with-html-output after *stream* nil, so for example you can do

    (with-cl-who (:indent t) ...)
and it will expand into:
    (with-html-output (*stream* nil :indent t) ...)
.


<-Back