From: Chris Hanson Date: Thu, 18 Nov 1993 01:33:22 +0000 (+0000) Subject: Fix think-o in last change. X-Git-Tag: 20090517-FFI~7482 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=87064cae763ad2c8dd8c460b42cdf100cd7803d1;p=mit-scheme.git Fix think-o in last change. --- diff --git a/v7/src/runtime/infutl.scm b/v7/src/runtime/infutl.scm index b8e8b6eff..6568cbf53 100644 --- a/v7/src/runtime/infutl.scm +++ b/v7/src/runtime/infutl.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: infutl.scm,v 1.49 1993/11/18 00:47:13 cph Exp $ +$Id: infutl.scm,v 1.50 1993/11/18 01:33:22 cph Exp $ Copyright (c) 1988-93 Massachusetts Institute of Technology @@ -293,8 +293,9 @@ MIT in each case. |# (merge-pathnames (pathname-new-directory pathname - (list-tail (pathname-directory pathname) - (length (pathname-directory (car rule))))) + (cons 'RELATIVE + (list-tail (pathname-directory pathname) + (length (pathname-directory (car rule)))))) (cdr rule)) pathname)))) diff --git a/v8/src/runtime/infutl.scm b/v8/src/runtime/infutl.scm index b8e8b6eff..6568cbf53 100644 --- a/v8/src/runtime/infutl.scm +++ b/v8/src/runtime/infutl.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: infutl.scm,v 1.49 1993/11/18 00:47:13 cph Exp $ +$Id: infutl.scm,v 1.50 1993/11/18 01:33:22 cph Exp $ Copyright (c) 1988-93 Massachusetts Institute of Technology @@ -293,8 +293,9 @@ MIT in each case. |# (merge-pathnames (pathname-new-directory pathname - (list-tail (pathname-directory pathname) - (length (pathname-directory (car rule))))) + (cons 'RELATIVE + (list-tail (pathname-directory pathname) + (length (pathname-directory (car rule)))))) (cdr rule)) pathname))))