On Thu, Feb 12, 2009 at 10:20 PM, Chouser <chou...@gmail.com> wrote:
> There's a misplaced paren in take-while in the lazy branch.  Patch attached.

For what it's worth, using the lazy branch for my clojure-classes
project, I had to make two kinds of changes (not counting the patch to
core).  I had to remove a couple uses of lazy-cons in contrib and use
lazy-seq instead.  And I had one use of nil punning:

(when-let [badge (filter identity (map ...))] ...)

Left that way, the body of the when-let executed even when map
returned only nils.  This caused a small error that would be caught
with good unit tests.  ...if I had any.  :-)

--Chouser

--~--~---------~--~----~------------~-------~--~----~
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
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to