Fix stupid bug where files were not fasloaded in `load-system!'.
authorChris Hanson <org/chris-hanson/cph>
Fri, 5 Jun 1987 20:41:54 +0000 (20:41 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 5 Jun 1987 20:41:54 +0000 (20:41 +0000)
v7/src/runtime/system.scm

index 5180af4f43c6ae5248430f33d2d2cb9ea7a7ba02..33f5130fa400d940345ef24cf28f6426a20ef343 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/system.scm,v 13.49 1987/06/05 18:02:50 cph Exp $
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/system.scm,v 13.50 1987/06/05 20:41:54 cph Rel $
 ;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
          '()
          (split-list files 20
            (lambda (head tail)
-             (newline)
-             (write-string "Purify")
-             (purify (list->vector head) true)
-             (append! head (loop tail))))))
+             (let ((expressions (map fasload head)))
+               (newline)
+               (write-string "Purify")
+               (purify (list->vector expressions) true)
+               (append! expressions (loop tail)))))))
     (let ((files (format-files-list (access :files-lists system) compiled?)))
       (set! (access :files system)
            (map (lambda (file) (pathname->string (car file))) files))