From: Guillermo J. Rozas Date: Wed, 12 Aug 1992 08:57:22 +0000 (+0000) Subject: Fix parenthesis bug from last edit. X-Git-Tag: 20090517-FFI~9131 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=fe1a58dec243de661135849ce77e1aa96314470d;p=mit-scheme.git Fix parenthesis bug from last edit. --- diff --git a/v7/src/runtime/dospth.scm b/v7/src/runtime/dospth.scm index 06f6bf7f3..3f0312524 100644 --- a/v7/src/runtime/dospth.scm +++ b/v7/src/runtime/dospth.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/dospth.scm,v 1.8 1992/08/12 08:49:46 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/dospth.scm,v 1.9 1992/08/12 08:57:22 jinx Exp $ Copyright (c) 1992 Massachusetts Institute of Technology @@ -205,15 +205,14 @@ MIT in each case. |# ;; This should really canonicalize the directory as well. (let ((name (%pathname-name pathname)) (type (%pathname-type pathname))) - (if (and (valid? name 8) - (valid? type 3) + (if (and (valid? name 8) (valid? type 3)) pathname (%make-pathname (%pathname-host pathname) (%pathname-device pathname) (%pathname-directory pathname) (canonicalize-field name 8) (canonicalize-field type 3) - (%pathname-version pathname)))))) + (%pathname-version pathname))))) ;;;; Pathname Unparser