From 705f9c6e2129cbcd2e5c25fa3e03b51888a7c7b4 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 11 Jul 1995 22:31:03 +0000 Subject: [PATCH] Install kludge to handle \\foo\bar notation. --- v7/src/runtime/dospth.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/dospth.scm b/v7/src/runtime/dospth.scm index 67563ea60..c0572ad61 100644 --- a/v7/src/runtime/dospth.scm +++ b/v7/src/runtime/dospth.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: dospth.scm,v 1.26 1995/07/11 22:29:22 cph Exp $ +$Id: dospth.scm,v 1.27 1995/07/11 22:31:03 cph Exp $ Copyright (c) 1992-95 Massachusetts Institute of Technology @@ -274,7 +274,7 @@ MIT in each case. |# (eq? (car directory) 'ABSOLUTE) (pair? (cdr directory)) (string? (cadr directory)) - (string-null?? (cadr directory)))) + (string-null? (cadr directory)))) (define (dos/pathname-as-directory pathname) (let ((name (%pathname-name pathname)) -- 2.25.1