> When I press e the mini buffer prompts me to "Eval in frame:" and I > propmpty type s1 to see the following error in the minibuffer: > Unexpected exception generated: java.lang.IllegalArgumentException: > Invalid method This stuff is all new to me, so I'm likely to be > doing something silly.
I doubt that. Most likely you have a fairly complicated installation, whose problems i haven't experienced yet. If anyone else has tried this, are you able to eval with the "e" key from the sldb buffer? Sam, can I suggest we eliminate those installation issues by experimenting with a known working project, e.g. logos and seeing if that works for you? If so, try this: git clone https://github.com/swannodette/logos.git use this project.clj: (defproject logos "0.6.1-SNAPSHOT" :description "Logic programming for Clojure" :dependencies [[org.clojure/clojure "1.3.0-alpha5"] [org.clojure.contrib/macro-utils "1.3.0-alpha4"]] :dev-dependencies [[swank-clojure "1.4.0-SNAPSHOT"] [clojure-source "1.3.0-alpha5"] [lein-clojars "0.6.0"]] :jvm-opts ["-agentlib:jdwp=transport=dt_socket,server=y,suspend=n"] ) Run lein deps and lein swank Then try setting a breakpoint. let me know. g -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
