#| -*-Scheme-*-
-$Id: compiler.sf,v 1.11 2001/08/15 03:09:53 cph Exp $
+$Id: compiler.sf,v 1.12 2001/08/16 19:09:28 cph Exp $
Copyright (c) 1992-2001 Massachusetts Institute of Technology
(begin
;; If there is no existing package constructor, generate one.
(if (not (file-exists? "compiler.pkd"))
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler"))
+ (cref/generate-trivial-constructor "compiler"))
(construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;;; -*-Scheme-*-
;;;
-;;; $Id: edwin.sf,v 1.25 2001/08/15 03:07:50 cph Exp $
+;;; $Id: edwin.sf,v 1.26 2001/08/16 19:08:46 cph Exp $
;;;
;;; Copyright (c) 1991-2001 Massachusetts Institute of Technology
;;;
(if (not (name->package '(EDWIN)))
(begin
(if (not (file-exists? (pathname-new-type package-name "pkd")))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- package-name)))
+ (cref/generate-trivial-constructor package-name))
(construct-packages-from-file
(fasload (pathname-new-type package-name "pkd")))))