From: Mark Wooding Date: Fri, 10 Jul 2020 19:37:10 +0000 (+0100) Subject: dot/lisp-init.lisp: Add the `HOME:' logical-pathname host on ECL. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/c36efcdc0b2d92b02fd7224d4fc53cf5a7cb74e3 dot/lisp-init.lisp: Add the `HOME:' logical-pathname host on ECL. --- diff --git a/dot/lisp-init.lisp b/dot/lisp-init.lisp index 2d8bb9e..54df25f 100644 --- a/dot/lisp-init.lisp +++ b/dot/lisp-init.lisp @@ -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")