From: Chris Hanson Date: Wed, 4 Mar 1998 21:15:17 +0000 (+0000) Subject: Export (inexplicably missing) stream procedures. X-Git-Tag: 20090517-FFI~4835 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=71e9d05b195ef1e4b1bdc11e9b416da88eeb4609;p=mit-scheme.git Export (inexplicably missing) stream procedures. --- diff --git a/v7/src/runtime/runtime.pkg b/v7/src/runtime/runtime.pkg index e015e8288..b64c104d7 100644 --- a/v7/src/runtime/runtime.pkg +++ b/v7/src/runtime/runtime.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: runtime.pkg,v 14.293 1998/02/22 08:47:36 cph Exp $ +$Id: runtime.pkg,v 14.294 1998/03/04 21:15:10 cph Exp $ Copyright (c) 1988-98 Massachusetts Institute of Technology @@ -2983,9 +2983,13 @@ MIT in each case. |# prime-numbers-stream stream stream->list + stream-accumulate + stream-append stream-car stream-cdr + stream-filter stream-first + stream-for-each stream-head stream-length stream-map @@ -2994,6 +2998,7 @@ MIT in each case. |# stream-ref stream-rest stream-tail + stream-write tail the-empty-stream) (initialization (initialize-package!))) diff --git a/v8/src/runtime/runtime.pkg b/v8/src/runtime/runtime.pkg index 068b90e60..0eb61dd9d 100644 --- a/v8/src/runtime/runtime.pkg +++ b/v8/src/runtime/runtime.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: runtime.pkg,v 14.299 1998/02/22 08:47:55 cph Exp $ +$Id: runtime.pkg,v 14.300 1998/03/04 21:15:17 cph Exp $ Copyright (c) 1988-98 Massachusetts Institute of Technology @@ -2987,9 +2987,13 @@ MIT in each case. |# prime-numbers-stream stream stream->list + stream-accumulate + stream-append stream-car stream-cdr + stream-filter stream-first + stream-for-each stream-head stream-length stream-map @@ -2998,6 +3002,7 @@ MIT in each case. |# stream-ref stream-rest stream-tail + stream-write tail the-empty-stream) (initialization (initialize-package!)))