> (defvar clojure-stuff-path "~/clj"
> "Where all cool Clojure stuff lies.")
>
> (defun slime-clojure-internal-swank ()
> (interactive)
> (add-to-list 'load-path (concat clojure-stuff-path "/clojure-mode"))
> (add-to-list 'load-path (concat clojure-stuff-path "/swank-
> clojure"))
> (req
Okay, one of my usual habits seems to be to answer my own questions...
I figured this out. In the quest to get emacs talking to a separately
started swank-server I made a too light emacs setup and totally
skipped the swank-clojure.el and swank-clojure-autoload.el files. In
them was the solution.
I have the same problem and I have the latest version of all involved
components. I run Emacs 23.1 on Ubuntu.
Any ideas on how to resolve it? The trick of using `ns' and `use'
separately does not seem to solve the problem for me.
It feels like there are two or even more environments behind the
s
I have had the same experience. I solved it by using (ns ...) and (use
separately).
/mac
On Jul 27, 9:41 pm, Tom Emerson wrote:
> Hi all,
>
> I'm working with a Clojure file that creates a namespace to include
> all of its functions:
>
> (ns foobar)
>
> I load slime and then compile/load the fi
Thanks Daniel, I'll upgrade all the components and see how things go.
On Tue, Jul 28, 2009 at 10:19 AM, Daniel Janus wrote:
>
>> The following steps should show the "problem" I'm having:
>
> [...]
>
> This sequence works perfectly well for me with SLIME 2009-07-15,
> clojure-mode 8c333628bf507749
> The following steps should show the "problem" I'm having:
[...]
This sequence works perfectly well for me with SLIME 2009-07-15,
clojure-mode 8c333628bf507749dd78b312333130b00e6ec06f, swank-clojure
6cd3057d48e00da485cdf43b2b170816e5187c40, Emacs 22.2.1 (on Ubuntu
9.04), and both Clojure 1.0.0
On Mon, Jul 27, 2009 at 5:09 PM, Phil Hagelberg wrote:
[snip]
> What exactly are you trying?
The following steps should show the "problem" I'm having:
1. Create a file, foo.clj, containing
(ns foo)
(def qux 5)
(defn bar [x]
(* x qux))
2. Start Slime.
3. Back in foo.clj, C-c C-k to compile
Tom Emerson writes:
> When I switch back to the clojure file and modify or add a function
> that refers to another symbol defined in that namespace, and attempt
> to evaluate the sexp with C-c C-e then the SLIME repl throws an
> exception saying that the symbols cannot be resolved (even though I