r5442: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 2 Aug 2003 22:19:37 +0000 (22:19 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 2 Aug 2003 22:19:37 +0000 (22:19 +0000)
byte-stream.lisp
kmrcl.asd

index 36f77e7048ff9822b83a66aab06db3e506312adf..d65387f633a66f249ed22c0378212839c26a4012 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  June 2003
 ;;;;
-;;;; $Id: byte-stream.lisp,v 1.1 2003/07/05 02:32:08 kevin Exp $
+;;;; $Id: byte-stream.lisp,v 1.2 2003/08/02 22:19:37 kevin Exp $
 ;;;;
 ;;;; Works for CMUCL, SBCL, and AllergoCL only
 ;;;;
@@ -21,6 +21,8 @@
 
 (in-package #:kmrcl)
 
+;; Intial CMUCL version by OnShored. Ported to SBCL by Kevin Rosenberg
+
 #+(or cmu sbcl)
 (progn
 (defstruct (byte-array-output-stream
@@ -174,6 +176,9 @@ Make-Byte-Array-Output-Stream since the last call to this function."
 
 ) ;; progn
 
+
+;;; Simple streams implementation by Kevin Rosenberg
+
 #+allegro
 (progn
 
index 1c9801f9af65398da2864ee7320e7bb96648a4bb..ec8b2970e191ebda04df674c2df6cec00521479d 100644 (file)
--- a/kmrcl.asd
+++ b/kmrcl.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: kmrcl.asd,v 1.47 2003/07/31 17:11:44 kevin Exp $
+;;;; $Id: kmrcl.asd,v 1.48 2003/08/02 22:19:37 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -33,6 +33,7 @@
     :components 
     ((:file "package")
      (:file "ifstar" :depends-on ("package"))
+     (:file "byte-stream" :depends-on ("package"))
      (:file "macros" :depends-on ("package"))
      (:file "functions" :depends-on ("macros"))
      (:file "lists" :depends-on ("macros"))