#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.14 1992/04/06 19:52:47 bal Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.15 1992/05/26 17:40:37 mhwu Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
(FORMAT ((RUNTIME FORMAT) (INITIALIZE-PACKAGE!) "format"))
(HASH-TABLE ((RUNTIME HASH-TABLE) (INITIALIZE-PACKAGE!) "hashtb"))
(KRYPT ((RUNTIME KRYPT) #F "krypt"))
- (SUBPROCESS ((RUNTIME SUBPROCESS) (INITIALIZE-PACKAGE!) "process"))))
+ (SUBPROCESS ((RUNTIME SUBPROCESS) (INITIALIZE-PACKAGE!) "process"))
+ (COMPRESS ((RUNTIME COMPRESS) (INITIALIZE-PACKAGE!) "cpress"))
+ ))
(define loaded-options
'())
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.150 1992/05/23 01:13:04 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.151 1992/05/26 17:40:49 mhwu Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
encrypt
decrypt))
+(define-package (runtime compress)
+ (file-case options
+ ((load) "cpress")
+ (else))
+ (parent ())
+ (export ()
+ compress
+ uncompress))
+
(define-package (runtime port)
(files "port")
(parent ())
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.150 1992/05/23 01:13:04 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.151 1992/05/26 17:40:49 mhwu Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
encrypt
decrypt))
+(define-package (runtime compress)
+ (file-case options
+ ((load) "cpress")
+ (else))
+ (parent ())
+ (export ()
+ compress
+ uncompress))
+
(define-package (runtime port)
(files "port")
(parent ())