Arc Forumnew | comments | leaders | submitlogin
3 points by fallintothis 5037 days ago | link | parent

how to warn without muddying stdout?

If you mean redirecting to, say, stderr:

  (w/stdout (stderr)
    (if (> html-nestlev 1)
        (warn "maximum html nest level exceeded")))


2 points by evanrmurphy 5037 days ago | link

I think that will do it, thanks!

-----