fix error message
svn: r13906
This commit is contained in:
parent
2b0e89ee2a
commit
56bb4539d0
|
@ -86,9 +86,9 @@
|
||||||
(define (too-large who list n)
|
(define (too-large who list n)
|
||||||
(raise-mismatch-error
|
(raise-mismatch-error
|
||||||
who
|
who
|
||||||
(format "index ~e too large for list~a: ~e"
|
(format "index ~e too large for list~a: "
|
||||||
n (if (list? list) "" " (not a proper list)") list)
|
n (if (list? list) "" " (not a proper list)"))
|
||||||
n))
|
list))
|
||||||
|
|
||||||
(define (take list0 n0)
|
(define (take list0 n0)
|
||||||
(unless (exact-nonnegative-integer? n0)
|
(unless (exact-nonnegative-integer? n0)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user