From a100c454d72f94cd9e11d8b63caff87120d170ca Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 23 Dec 1997 05:09:01 +0000 Subject: [PATCH] Add additional environment variable to check in order to find the Windows 95 system directory. --- v7/src/runtime/ntprm.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v7/src/runtime/ntprm.scm b/v7/src/runtime/ntprm.scm index d2abad658..9e9ec927b 100644 --- a/v7/src/runtime/ntprm.scm +++ b/v7/src/runtime/ntprm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: ntprm.scm,v 1.18 1997/12/23 02:27:11 cph Exp $ +$Id: ntprm.scm,v 1.19 1997/12/23 05:09:01 cph Exp $ Copyright (c) 1992-97 Massachusetts Institute of Technology @@ -269,6 +269,7 @@ MIT in each case. |# (lambda () (let ((sysroot (or (trydir (get-environment-variable "SystemRoot")) + (trydir (get-environment-variable "windir")) (trydir (get-environment-variable "winbootdir"))))) (if (not sysroot) (error "Unable to find Windows system root.")) -- 2.25.1