javajosh <javaj...@gmail.com> writes:
>> failing to load in the error message and all, I'd try that.
> I would still like to see slime in action, however. I have two emacs
> installed, GNU and Aquamacs. macports is still not able to do anything
> - I'm actually rather concerned about it's health.
>
> $ emacs --version
> GNU Emacs 22.1.1
>
> I don't really know macports (or the native packager, pkgutil I think)
> well enough to know what is responsible for installing that emacs.
Forget Macports etc. (though I personally use and like Homebrew).

Just get a self-contained recent Emacs from http://emacsformacosx.com/,
and stick it in your /Applications folder.

Install slime and clojure-mode from elpa using Phil's instructions. Make
sure that swank-clojure is included as a dev-dependency in your clojure
project.

If you have issues with emacs failing to pick up the right executables,
you can use the following nifty trick to ensure Emacs' $PATH matches the
one you've configured for Bash in Terminal:

(defun set-exec-path-from-shell-PATH ()
  (let ((path-from-shell (shell-command-to-string "$SHELL -i -c 'echo $PATH'")))
    (setenv "PATH" path-from-shell)
    (setq exec-path (split-string path-from-shell path-separator))))

(if window-system (set-exec-path-from-shell-PATH))


-Steve

-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
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

Reply via email to