Make fasload default to extension bin. Fix a bug in previous attempt.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 24 Jun 1987 03:12:40 +0000 (03:12 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 24 Jun 1987 03:12:40 +0000 (03:12 +0000)
v7/src/runtime/input.scm

index bc23e8d59d3b3b70e9e7f54ceb1f43521b151964..7e5de6dace46ccda32f6b80d0cafaf65c0e87f34 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/input.scm,v 13.46 1987/06/24 02:49:10 jinx Exp $
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/input.scm,v 13.47 1987/06/24 03:12:40 jinx Exp $
 ;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 (set! fasload
 (named-lambda (fasload filename)
   (let ((port (rep-output-port))
-       (filename (pathname->string
-                  (pathname->input-truename
-                   (merge-pathnames (->pathname filename)
-                                    default-pathname)))))
+       (filename (canonicalize-input-filename
+                  (merge-pathnames (->pathname filename)
+                                    default-pathname))))
     (newline port)
     (write-string "FASLoading " port)
     (write filename port)