From: Chris Hanson Date: Wed, 1 Nov 1995 01:05:28 +0000 (+0000) Subject: Add ability to override default selection of constructor and loader X-Git-Tag: 20090517-FFI~5799 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=af0f7cdc45fc6660ce361a33065a13cd942b62e6;p=mit-scheme.git Add ability to override default selection of constructor and loader files. --- diff --git a/v7/src/runtime/packag.scm b/v7/src/runtime/packag.scm index 63f6b470c..ab6f3ead8 100644 --- a/v7/src/runtime/packag.scm +++ b/v7/src/runtime/packag.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: packag.scm,v 14.23 1995/11/01 00:56:53 cph Exp $ +$Id: packag.scm,v 14.24 1995/11/01 01:05:28 cph Exp $ Copyright (c) 1988-95 Massachusetts Institute of Technology @@ -174,14 +174,14 @@ MIT in each case. |# (load (let ((rewrite (assq 'MAKE-CONSTRUCTOR-NAME options)) (pathname (pathname-new-type pathname "bco"))) (if rewrite - (rewrite pathname) + ((cdr rewrite) pathname) pathname)) system-global-environment syntax-table false) ((load (let ((rewrite (assq 'MAKE-LOADER-NAME options)) (pathname (pathname-new-type pathname "bld"))) (if rewrite - (rewrite pathname) + ((cdr rewrite) pathname) pathname)) system-global-environment syntax-table false)