<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">I'm running Mac OS X 10.4.7, and I've tried getting slime to work with the OS's emacs, xemacs and emacs21 from fink, as well as a Carbon Emacs package that was linked from the Apple downloads site.  I've tried the slime from fink, slime from cvs, and downloaded tgz, and the slime that came bundled in the Carbon Emacs.  I've tried using clisp, cmucl, sbcl, and openmcl, and nothing I've tried works.  Below is my current .emacs file, which is set to use slime from the tgz file, and sbcl from fink.  If anyone can offer any help with any particular slime on Mac OS X setup that I've tried, please let me know, and I can show specific error messages I've gotten, if they might help.<BR> <SPAN class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><DIV><BR></DIV><DIV>(setq auto-mode-alist </DIV><DIV>(append </DIV><DIV>'(("\\.mm$" . objc-mode) </DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre">        </SPAN>    ;;("\\.lisp$" . fi:common-lisp-mode)</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre">   </SPAN>    ("\\.lisp$" . lisp-mode))</DIV><DIV>auto-mode-alist)) </DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(add-to-list 'load-path "/Users/smee/slime-2.0")</DIV><DIV>(require 'slime)</DIV><DIV>(setq inferior-lisp-program "/sw/bin/sbcl"</DIV><DIV>      lisp-indent-functioin 'common-lisp-indent-function</DIV><DIV>      slime-complete-symbol-function 'slime-fuzzy-complete-symbol</DIV><DIV>      slime-startup-animation t)</DIV><DIV>;;;(add-hook 'lisp-mode-hook (lambda () (slime-mode t)))</DIV><DIV>(add-hook 'inferior-lisp-mode-hook (lambda () (inferior-slime-mode t)))</DIV><DIV>;; Optionally, specify the lisp program you are using. Default is "lisp"</DIV><DIV>;;;(slime-setup)</DIV><DIV>(add-hook 'lisp-mode-hook</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre">    </SPAN>  (lambda ()</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre"> </SPAN>    (require 'slime)</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre"> </SPAN>    (slime-mode t)</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre">   </SPAN>    (slime-setup)))</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>  (setq load-path</DIV><DIV>                (cons (expand-file-name "~/ilisp-20021222/") load-path))</DIV><DIV>          (autoload 'openmcl "ilisp" "Inferior Open MCL" t)</DIV><DIV>          ;; See the file "ilisp-5.11/ilisp.emacs" for</DIV><DIV>          ;; examples of other customization settings</DIV><DIV>          ;; that affect ILISP. Some recent</DIV><DIV>          ;; versions of XEmacs can be configured to</DIV><DIV>          ;; use a ~/.xemac/init.el file</DIV><DIV>          ;; instead of ~/.emacs</DIV><DIV>     </DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(custom-set-variables</DIV><DIV>  ;; custom-set-variables was added by Custom.</DIV><DIV>  ;; If you edit it by hand, you could mess it up, so be careful.</DIV><DIV>  ;; Your init file should contain only one such instance.</DIV><DIV>  ;; If there is more than one, they won't work right.</DIV><DIV> )</DIV><DIV>(custom-set-faces</DIV><DIV>  ;; custom-set-faces was added by Custom.</DIV><DIV>  ;; If you edit it by hand, you could mess it up, so be careful.</DIV><DIV>  ;; Your init file should contain only one such instance.</DIV><DIV>  ;; If there is more than one, they won't work right.</DIV><DIV> '(default ((t (:stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :family "apple-monaco"))))</DIV><DIV> '(cursor ((t (:background "darkgrey"))) t))</DIV><DIV>(setq make-backup-files nil)</DIV><DIV>(setq inhibit-startup-message t)</DIV><DIV>(load-file "/Volumes/BRUNOISE.JARDIN/TIGRE/emacs/test.el")</DIV><DIV>(load-file "/Volumes/BRUNOISE.JARDIN/TIGRE/emacs/test_commands.el")</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(fset '{</DIV><DIV>   (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("{}{" 0 "%d")) arg)))</DIV><DIV>(global-set-key (kbd "C-{") '{)</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(fset '}</DIV><DIV>   (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ([19 125 left right return] 0 "%d")) arg)))</DIV><DIV>(global-set-key (kbd "C-}") '})</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(fset '\[</DIV><DIV>   (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ([91 93 18 91 right] 0 "%d")) arg)))</DIV><DIV>(global-set-key (kbd "M-[") '\[)</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(fset '\]</DIV><DIV>   "\C-s]\C-m")</DIV><DIV>(global-set-key (kbd "M-]") '\])</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(fset '\)</DIV><DIV>   "\C-s)")</DIV><DIV>(global-set-key (kbd "C-)") '\))</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>(fset '\(</DIV><DIV>   (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ([40 41 18 40 right] 0 "%d")) arg)))</DIV><DIV>(global-set-key (kbd "C-(") '\()</DIV><DIV><BR class="khtml-block-placeholder"></DIV></SPAN><DIV> <SPAN class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><DIV><BR></DIV><DIV><BR></DIV><DIV style="text-align: right;"><SPAN class="Apple-style-span" style="text-align: right; ">Dustin Kick    </SPAN></DIV><BR class="Apple-interchange-newline"></SPAN> </DIV><BR></BODY></HTML>