From c36efcdc0b2d92b02fd7224d4fc53cf5a7cb74e3 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Fri, 10 Jul 2020 20:37:10 +0100 Subject: [PATCH] dot/lisp-init.lisp: Add the `HOME:' logical-pathname host on ECL. --- dot/lisp-init.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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") -- 2.11.0