Re: Error running Clojure 1.3 in Eclipse

2011-07-20 Thread Chas Emerick
On Jul 20, 2011, at 1:24 AM, Sean Corfield wrote: > On Tue, Jul 19, 2011 at 4:57 PM, Chas Emerick wrote: >> Depends on what you're using out of contrib 1.2.0. There are a number of >> namespaces that do not run afoul of the changes in Clojure 1.3.0. > > Good to know some parts do work. So far

Re: Error running Clojure 1.3 in Eclipse

2011-07-19 Thread Sean Corfield
On Tue, Jul 19, 2011 at 4:57 PM, Chas Emerick wrote: > Depends on what you're using out of contrib 1.2.0.  There are a number of > namespaces that do not run afoul of the changes in Clojure 1.3.0. Good to know some parts do work. So far every 3rd party project I've tried to use with Clojure 1.3.

Re: Error running Clojure 1.3 in Eclipse

2011-07-19 Thread Chas Emerick
On Jul 19, 2011, at 4:24 PM, Sean Corfield wrote: > On Tue, Jul 19, 2011 at 10:08 AM, ron peterson > wrote: >> In the project.clj I made a mistake, it should be >> >> (defproject Test "1.0.0-SNAPSHOT" >> :dependencies [[org.clojure/clojure "1.3.0-beta1"] >> [org.clojure/clojure

Re: Error running Clojure 1.3 in Eclipse

2011-07-19 Thread Sean Corfield
On Tue, Jul 19, 2011 at 10:08 AM, ron peterson wrote: > In the project.clj I made a mistake, it should be > > (defproject Test "1.0.0-SNAPSHOT" >  :dependencies [[org.clojure/clojure "1.3.0-beta1"] >                 [org.clojure/clojure-contrib "1.2.0"] I'm pretty sure you can't use contrib 1.2.0

Re: Error running Clojure 1.3 in Eclipse

2011-07-19 Thread ron peterson
In the project.clj I made a mistake, it should be (defproject Test "1.0.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.3.0-beta1"] [org.clojure/clojure-contrib "1.2.0"] :dev-dependencies [[lein-eclipse "1.0.0"]] ) I've tried with the standalone contrib and any other var

Re: Error running Clojure 1.3 in Eclipse

2011-07-18 Thread OGINO Masanori
Hello. > Warning: *print-detail-on-error* not declared dynamic and thus is not > dynamically rebindable, but its name suggests otherwise. Please either > indicate ^:dynamic *print-detail-on-error* or change the name. Since 1.3, the default behavior of vars is non-dynamic/un-rebindable. So, when

Re: Error running Clojure 1.3 in Eclipse

2011-07-18 Thread Sean Corfield
The stack trace shows: Caused by: java.lang.UnsupportedOperationException: Cannot recur across try at clojure.lang.Compiler$RecurExpr$Parser.parse(Compiler.java:6045) This looks like an incompatibility between your code (or something you're using) and Clojure 1.3.0. You can't have recur in