(assert ... <caller>)

This commit is contained in:
Rolf-Thomas Happe 2003-04-23 17:23:39 +00:00
parent c7e5b8e20a
commit 746040e917
1 changed files with 20 additions and 20 deletions

View File

@ -20,7 +20,7 @@
(delay '())))))
(define (segment-byte-stream bs start end)
(assert (<= start end))
(assert (<= start end) segment-byte-stream)
(let* ((bv (make-byte-vector (- end start) 0)))
(let loop ((i 0) (bs bs))
(cond ((< i start)