correcting bug with cadr: wrong contract type
This commit is contained in:
parent
a13274d63b
commit
1b1d285297
|
@ -44,6 +44,9 @@
|
|||
'make-vector
|
||||
'equal?
|
||||
'member
|
||||
'memq
|
||||
'memv
|
||||
'memf
|
||||
'append
|
||||
'reverse
|
||||
'length
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
'caarable value');
|
||||
var checkCadrPair = baselib.check.makeCheckArgumentType(
|
||||
function(x) {
|
||||
return isPair(x) && isPair(x.first);
|
||||
return isPair(x) && isPair(x.rest);
|
||||
},
|
||||
'cadrable value');
|
||||
var checkList = baselib.check.checkList;
|
||||
|
|
|
@ -100,6 +100,7 @@
|
|||
if
|
||||
cond
|
||||
else
|
||||
=>
|
||||
case
|
||||
quote
|
||||
unquote
|
||||
|
|
|
@ -7,4 +7,4 @@
|
|||
(provide version)
|
||||
(: version String)
|
||||
|
||||
(define version "1.135")
|
||||
(define version "1.137")
|
||||
|
|
Loading…
Reference in New Issue
Block a user