On Dec 6, 2012, at 10:41 AM, Brian Marick wrote:
>    (ns midje.repl
>      (:require ...
>            midje.util.backwards-compatible-utils
>            [leiningen.core.project :as project]         
> 


It worked to remove the modification to core from 
`m.u.backwards-compatible-utils` to 
the body of `midje.repl` (the only namespace that uses leiningen.core.project):

    (ns midje.repl
      ...)

    (when (ecosystem/clojure-1-3?)
      (in-ns 'clojure.core)
      (defn ex-info ...)
      (in-ns 'midje.repl))

    (require '[leiningen.core.project :as project])

I'm still curious why.

-----
Brian Marick, Artisanal Labrador
Contract programming in Ruby and Clojure
Occasional consulting on Agile
Author of /Functional Programming for the Object-Oriented Programmer/: 
https://leanpub.com/fp-oo


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

Reply via email to