dot/lisp-init.lisp: Really don't try to set `HOME:' on CMU CL.
[profile] / dot / lisp-init.lisp
index 8b0e3f9..373308a 100644 (file)
 #+sbcl
 (sb-ext:set-sbcl-source-location #p"/usr/share/sbcl-source/")
 
-;; Tell some Lisps about my home directory.
+;; Tell some Lisps about my home directory.  CMU CL already has a search list
+;; which does the same job.
 #+(and unix (or sbcl clisp))
 (let* ((homestring (or #+sbcl (sb-ext:posix-getenv "HOME")
                       #+clisp (ext:getenv "HOME")
-                      #+cmu (unix:unix-getenv "HOME")
                       "/home/mdw"))
        (home (pathname (concatenate 'string homestring "/"))))
   (setf (logical-pathname-translations "HOME")