dot/lisp-init.lisp: Add the `HOME:' logical-pathname host on ECL.
[profile] / dot / lisp-init.lisp
index 2d8bb9e..54df25f 100644 (file)
@@ -44,9 +44,9 @@
 
 ;; Tell some Lisps about my home directory.  CMU CL already has a search list
 ;; which does the same job.
-#+(and unix (or sbcl clisp))
+#+(and unix (or sbcl clisp ecl))
 (let* ((homestring (or #+sbcl (sb-ext:posix-getenv "HOME")
-                      #+clisp (ext:getenv "HOME")
+                      #+(or clisp ecl) (ext:getenv "HOME")
                       "/home/mdw"))
        (home (pathname (concatenate 'string homestring "/"))))
   (setf (logical-pathname-translations "HOME")