From 78fb3c154b494ba3588a02a56925d065a1a808e0 Mon Sep 17 00:00:00 2001 From: Stephen Adams Date: Fri, 29 Jan 1993 00:11:17 +0000 Subject: [PATCH] Add (runtime pathname nt) --- v7/src/runtime/make.scm | 5 +++-- v7/src/runtime/runtime.pkg | 10 ++++++++-- v8/src/runtime/make.scm | 5 +++-- v8/src/runtime/runtime.pkg | 10 ++++++++-- 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/v7/src/runtime/make.scm b/v7/src/runtime/make.scm index d491ad048..a75d01db9 100644 --- a/v7/src/runtime/make.scm +++ b/v7/src/runtime/make.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: make.scm,v 14.39 1992/12/07 19:06:47 cph Exp $ +$Id: make.scm,v 14.40 1993/01/29 00:11:17 adams Exp $ -Copyright (c) 1988-1992 Massachusetts Institute of Technology +Copyright (c) 1988-1993 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -369,6 +369,7 @@ MIT in each case. |# ;; Typically only one of them is loaded. (RUNTIME PATHNAME UNIX) (RUNTIME PATHNAME DOS) + (RUNTIME PATHNAME NT) (RUNTIME PATHNAME) (RUNTIME WORKING-DIRECTORY) (RUNTIME LOAD) diff --git a/v7/src/runtime/runtime.pkg b/v7/src/runtime/runtime.pkg index e437871a2..4dfdef429 100644 --- a/v7/src/runtime/runtime.pkg +++ b/v7/src/runtime/runtime.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: runtime.pkg,v 14.172 1993/01/28 23:21:21 adams Exp $ +$Id: runtime.pkg,v 14.173 1993/01/29 00:09:09 adams Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -1508,7 +1508,13 @@ MIT in each case. |# (parent (runtime pathname)) (file-case os-type ((dos) "dospth") - ((nt) "dospth") + (else)) + (initialization (initialize-package!))) + +(define-package (runtime pathname nt) + (parent (runtime pathname)) + (file-case os-type + ((nt) "ntpth") (else)) (initialization (initialize-package!))) diff --git a/v8/src/runtime/make.scm b/v8/src/runtime/make.scm index d491ad048..a75d01db9 100644 --- a/v8/src/runtime/make.scm +++ b/v8/src/runtime/make.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: make.scm,v 14.39 1992/12/07 19:06:47 cph Exp $ +$Id: make.scm,v 14.40 1993/01/29 00:11:17 adams Exp $ -Copyright (c) 1988-1992 Massachusetts Institute of Technology +Copyright (c) 1988-1993 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -369,6 +369,7 @@ MIT in each case. |# ;; Typically only one of them is loaded. (RUNTIME PATHNAME UNIX) (RUNTIME PATHNAME DOS) + (RUNTIME PATHNAME NT) (RUNTIME PATHNAME) (RUNTIME WORKING-DIRECTORY) (RUNTIME LOAD) diff --git a/v8/src/runtime/runtime.pkg b/v8/src/runtime/runtime.pkg index e437871a2..4dfdef429 100644 --- a/v8/src/runtime/runtime.pkg +++ b/v8/src/runtime/runtime.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: runtime.pkg,v 14.172 1993/01/28 23:21:21 adams Exp $ +$Id: runtime.pkg,v 14.173 1993/01/29 00:09:09 adams Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -1508,7 +1508,13 @@ MIT in each case. |# (parent (runtime pathname)) (file-case os-type ((dos) "dospth") - ((nt) "dospth") + (else)) + (initialization (initialize-package!))) + +(define-package (runtime pathname nt) + (parent (runtime pathname)) + (file-case os-type + ((nt) "ntpth") (else)) (initialization (initialize-package!))) -- 2.25.1