Hide these definitions from the global environment:
authorChris Hanson <org/chris-hanson/cph>
Wed, 12 Oct 1988 06:23:00 +0000 (06:23 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 12 Oct 1988 06:23:00 +0000 (06:23 +0000)
parse-pathname
pathname-unparse
pathname-unparse-name

v7/src/runtime/runtime.pkg
v8/src/runtime/runtime.pkg

index 5a49bdcce6dcb4e0823e285b497cf7b6539fadf2..66c23ec983a48bb9215eee86dc2da42401444e18 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.19 1988/10/07 08:53:03 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.20 1988/10/12 06:23:00 cph Exp $
 
 Copyright (c) 1988 Massachusetts Institute of Technology
 
@@ -1080,19 +1080,20 @@ MIT in each case. |#
   (file-case os-type
     ((unix) "unxpar")
     ((vms) "vmspar")
-    (else))
+    (else "unkpar"))
   (parent ())
   (export ()
-         parse-pathname
-         pathname-as-directory))
+         pathname-as-directory)
+  (export (runtime pathname)
+         parse-pathname))
 
 (define-package (runtime pathname-unparser)
   (file-case os-type
     ((unix) "unxunp")
     ((vms) "vmsunp")
-    (else))
+    (else "unkunp"))
   (parent ())
-  (export ()
+  (export (runtime pathname)
          pathname-unparse
          pathname-unparse-name))
 
index 41127d22deecbfbc3e7f93c245944df7d67f479c..46a7c867d4f735c92ceff91da2e6f59dc1e0af72 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.19 1988/10/07 08:53:03 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.20 1988/10/12 06:23:00 cph Exp $
 
 Copyright (c) 1988 Massachusetts Institute of Technology
 
@@ -1080,19 +1080,20 @@ MIT in each case. |#
   (file-case os-type
     ((unix) "unxpar")
     ((vms) "vmspar")
-    (else))
+    (else "unkpar"))
   (parent ())
   (export ()
-         parse-pathname
-         pathname-as-directory))
+         pathname-as-directory)
+  (export (runtime pathname)
+         parse-pathname))
 
 (define-package (runtime pathname-unparser)
   (file-case os-type
     ((unix) "unxunp")
     ((vms) "vmsunp")
-    (else))
+    (else "unkunp"))
   (parent ())
-  (export ()
+  (export (runtime pathname)
          pathname-unparse
          pathname-unparse-name))