Hi,

Am Montag, 7. Mai 2012 16:15:44 UTC+2 schrieb dgrnbrg:
>
> I haven't been able to figure out how to consistently repro it--it 
> happens when I evaluate it with VimClojure, and sometimes from the 
> lein repl, but I don't have a clear repro case :(.  Here's the 
> repository that the code lives in: https://github.com/dgrnbrg/piplin/ 
>
> Here's the (ns) form I'm using: 
>
> (ns piplin.test.math 
>   (:use clojure.test) 
>   (:import slingshot.ExceptionInfo) 
>   (:use [slingshot.slingshot :only [throw+]]) 
>   (:require [clojure.core :as clj]) 
>   (:use [piplin types math modules sim])) 
>

Try the following:

(ns piplin.test.math
  (:refer-clojure :exclude [not=])
  (:use ...)
  (:import ...))

This should exclude not= from core and prevent any clashes. I pay close 
attention in vimclojure to load namespace the way the are intended, that is 
via their ns clause. When the problem still persists in vimclojure while it 
works in other repls, please open a ticket in the issues section of 
http://bitbucket.org/kotarak/vimclojure.

Kind regards,
Meikel

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