Re: problems with slime and emacs

2008-11-01 Thread Chanwoo Yoo
Thanks! With the latest version of Clojure, slime does not show error messages, and works properly. But it seems that indentations are not applied to expressions in slime. Does it occur only to me? Or does slime not support indentation of Clojure code? --~--~-~--~~~---

Re: problems with slime and emacs

2008-10-31 Thread Volkan YAZICI
On Nov 1, 4:47 am, Chanwoo Yoo <[EMAIL PROTECTED]> wrote: > Hi. With a latest version of slime, I can not make slime working > properly with clojure on Mac(Leopard). I tried it as instructions of > clojure wiki, a readme file in swank-clojure, and emacs/slime/clojure > tutorial on ubuntu, but in t

Re: problems with slime and emacs

2008-10-31 Thread Chanwoo Yoo
Hi. With a latest version of slime, I can not make slime working properly with clojure on Mac(Leopard). I tried it as instructions of clojure wiki, a readme file in swank-clojure, and emacs/slime/clojure tutorial on ubuntu, but in the every case, slime shows some error messages. When I type m+x r

Re: problems with slime and emacs

2008-10-31 Thread Volkan YAZICI
On Oct 31, 5:59 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm struggling to get slime and emacs to work together. I copied the > code from the readme included with swank-clojure, but am running into > an error. Just for the records, there are some problems with both swank-clojure code

Re: problems with slime and emacs

2008-10-31 Thread Daniel Renfer
I believe you need to be using a newer version from SVN for this to work correctly. (probably a good idea anyway as some important fixes have made it in since that release.) On Fri, Oct 31, 2008 at 1:31 PM, Matthias Benkard <[EMAIL PROTECTED]> wrote: > > Hi, > >> I'm sure it's something trivial t

Re: problems with slime and emacs

2008-10-31 Thread Matthias Benkard
Hi, > I'm sure it's something trivial that I'm missing. I'm not so sure. > (require 'swank-clojure-autoload) > (swank-clojure-config >  (setq swank-clojure-jar-path "/Users/clk/Documents/Development/ > Languages/lisp/clojure_20080916/clojure.jar") >  (setq swank-clojure-extra-classpaths (list "

Re: problems with slime and emacs

2008-10-31 Thread Craig McDaniel
This works for me: (add-to-list 'load-path (expand-file-name "~/src/slime")) (require 'slime) (add-to-list 'load-path (expand-file-name "~/src/clojure-mode")) (require 'clojure-auto) (add-to-list 'load-path (expand-file-name "~/src/swank-clojure")) (setq swank-clojure-jar-path (expand-file-name

problems with slime and emacs

2008-10-31 Thread [EMAIL PROTECTED]
Hello all, I'm struggling to get slime and emacs to work together. I copied the code from the readme included with swank-clojure, but am running into an error. I'm sure it's something trivial that I'm missing. Here is what I have in my .emacs copied from the various readme files. ;; clojure m