dot/lisp-init.lisp: Oh, wait, I made it work in CLisp after all.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 30 Aug 2015 09:58:38 +0000 (10:58 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 12 Sep 2015 18:58:12 +0000 (19:58 +0100)
dot/lisp-init.lisp

index 6958be8..fdb2229 100644 (file)
@@ -32,7 +32,7 @@
 ;; Tell some Lisps about my home directory.
 #+sbcl (require :sb-posix)
 #+cmu (ext:clear-search-list "HOME")
-#+(and unix (or sbcl cmu))
+#+(and unix (or sbcl clisp cmu))
 (let ((#1=#:home (pathname (concatenate 'string
                                        (or #+sbcl (sb-posix:getenv "HOME")
                                            #+clisp (ext:getenv "HOME")
@@ -40,7 +40,7 @@
                                            "/home/mdw")
                                        "/"))))
   (setf (logical-pathname-translations "HOME")
-       `(("HOME:**;*.*.*" ,(merge-pathnames "**/*.*" #1#)))))
+       `(("HOME:**;*.*.*" ,(merge-pathnames "**/*.*" #1# nil)))))
 
 ;; Various fixings.
 #+clisp (setf custom:*parse-namestring-ansi* t)