> > Success! Thank you. Success lasted till I tried to restart emacs. Here is where I am stuck again: 1. It can't find M-x slime clojure-slime-config doesn't seem to be an option either to manually run with M-x clojure<tab>
The solution seems to be to take the functions in clojure-slime-config and put them into my .emacs together with a setq. The setq seems to be mandatory. (setq clojure-src-root "~/src") (add-to-list 'load-path (concat clojure-src-root "/slime")) (add-to-list 'load-path (concat clojure-src-root "/slime/contrib")) (add-to-list 'load-path (concat clojure-src-root "/swank-clojure")) (require 'slime-autoloads) (require 'swank-clojure-autoload) (slime-setup '(slime-fancy slime-repl)) (setq swank-clojure-jar-path (concat clojure-src-root "/clojure/ clojure.jar") swank-clojure-extra-classpaths (list (concat clojure-src-root "/clojure-contrib/clojure- contrib/src/"))) A more general question. Why use "\\.clj$", where most other processes seem to have "\\.clj\\'" as regexp to auto-mode-alist? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---