While i am playing with my new maxima installation, i have seen that imaxima
doesn't work here on the Mac OS X.
The solution is simple, one needs to remove the imaxima-subst-char-in-string
in the computation of the temporary directory, because this chokes with the
way it is formed on the mac. Hence the substitution:
; (make-directory
; (setq imaxima-tmp-subdir
; ;; For some reason TeX doesn't grok underscores in file names
; (imaxima-subst-char-in-string ?_ ?=
; (make-temp-name (expand-file-name "imaxima" imaxima-tmp-dir)))))
(make-directory
(setq imaxima-tmp-subdir
(make-temp-name (expand-file-name "imaxima" imaxima-tmp-dir))))
After that imaxima works OK. At first sight slime is able to coexist.
(Note that TeX has no problem here with the underscore in the name).
--
Michel Talon