On Tue, May 17, 2011 at 10:53 PM, Aaron Bedra <aaron.be...@gmail.com> wrote: > On 05/17/2011 09:21 PM, Ken Wesson wrote: >> >> On Tue, May 17, 2011 at 5:57 PM, pmbauer<paul.michael.ba...@gmail.com> >> wrote: >>> >>> Manning's forum would be a better home for errata than the Clojure >>> mailing >>> list. >>> http://www.manning-sandbox.com/forum.jspa?forumID=624 >> >> Sorry; I don't really care for web forums much. I think mailing lists >> and Usenet are much to be preferred. > > Please do use Manning's forum for this.
Actually, I can't. My copy is borrowed, for now, rather than my own, so I don't have an account there. > It will help the authors and the publisher track the errata in the > proper way and reduce the traffic on this list. One of the authors has already noticed this thread, so the question of making sure the authors notice it is moot. As for traffic on this list, is it not sufficient to limit the discussion to this one thread? Anyway, I found two oddities near the end of Chapter 8. In Listing 8.9: (let [stream (joc-www)] (with-resource [page stream] #(.close %) (.readLine page))) The third line could just read .close, as here is where it is used: (~close-fn ~(binding 0)))))) This would become (.close stream) in this instance, which is a valid Java invocation form. Unlike with a HOF, there's no need in this context to wrap .close in a closure. And in Listing 8.11 there are two lines that resemble this: (assoc {} :pre (vec (rest con))) This could just be {:pre (vec (rest con))}. -- Protege: What is this seething mass of parentheses?! Master: Your father's Lisp REPL. This is the language of a true hacker. Not as clumsy or random as C++; a language for a more civilized age. -- 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