I am getting an error about >! not being in a go block with this code:

      (go-loop [state :nl
                column 0
                last-ws nil
                buff ""]
        (let [line-out (fn [c b]
                         (>! out (apply str b (repeat (- col-width (count b
)) \space))))]
          (cond
            (>= column col-width)
            (condp = state
              :ws (do
                    (line-out \| buff)
                    (recur :nl 0 nil ""))
         ..etc etc

I just changed the line-out call to just do...

(>! out-chan buff)

...and it worked fine.

So the failing code is both dynamically and lexically within the scope of 
the go-loop --- is that supposed to be that way? Or am I completely missing 
something?

-kt

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to