Skip to content

Commit

Permalink
Clarified a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
avodonosov committed Jan 17, 2021
1 parent 8e6a1a0 commit 2b3823e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,20 @@
(:use :cl)
(:import-from #:impl-specific-gray
;; We import and re-export only
;; function symbols;
;; function symbols.
;; But we define our own classes
;; mirroring the gray class hierarchy
;; of the lisp implementation (this
;; of the lisp implementation. This
;; is necessary to define our methods
;; for particular generic functions)
;; for the implementation-specific
;; variations of stream-read-sequence,
;; stream-write-sequence, stream-file-position,
;; and call from them their portalbe
;; counterparts defined by trivial-gray-streams.
,@gray-function-symbols)
(:export ,@gray-class-symbols
,@gray-function-symbols
;; extension functions
;; out extensions to the Gray proposal
#:stream-read-sequence
#:stream-write-sequence
#:stream-file-position
Expand Down

0 comments on commit 2b3823e

Please sign in to comment.