Fix parenthesis bug from last edit.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 12 Aug 1992 08:57:22 +0000 (08:57 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 12 Aug 1992 08:57:22 +0000 (08:57 +0000)
v7/src/runtime/dospth.scm

index 06f6bf7f30fdf682f59ca7e1a59a9f11ec361758..3f0312524420d09d22ec7c37014d41c4755d1243 100644 (file)
@@ -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)))))
 \f
 ;;;; Pathname Unparser