Hi, After updating to r1295, I'm hitting an error in swank-clojure I can't seem to fix. Here's a micro test:
(ns jochu.micro-test) (defn deep-replace [smap coll] (map #(if (or (seq? %) (vector? %)) (deep-replace smap %) %) (replace smap coll))) (defn t-to-true [form] (deep-replace {'t true} form)) (defn throw-an-error [] (let [form (t-to-true '(apply + '(1 2 3)))] (println form) (eval form))) (throw-an-error) ;; outputs: (apply + (quote (1 2 3))) java.lang.ExceptionInInitializerError (NO_SOURCE_FILE:0) Or is there something else I ought to be changing? Thanks for any input you can give me, - Jeff --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---