
Change the GC so that it can mark and sweep objects in-place, instead of always copying. This change is helpful for reducing peak memory use while performing a collection on a large, old heap. Some non-copying support was already in place for locked objects, but the new implementation is faster and more general. As an alternative to locking, the storage manager now provides "immobile" allocation (currently only for bytevectors, vectors, and boxes), which allocates an object that won't move but that can be GCed if it's not referenced. A locked object is an object that has been immobiled and that is on a global list --- mostly the old, non-scalable implementation of locked objects brought back, since immobile objects cover the cases that need to scale. original commit: aecb7b736cb1d52764c292fa6364a674958dfde3
6439 lines
606 KiB
Plaintext
6439 lines
606 KiB
Plaintext
*** errors-compile-0-f-f-f 2020-04-20 14:03:37.000000000 -0600
|
|
--- errors-compile-0-t-f-f 2020-04-20 14:17:38.000000000 -0600
|
|
***************
|
|
*** 222,228 ****
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 2 to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 4 to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 2 to #<procedure foo>".
|
|
! 3.mo:Expected error in mat let: "incorrect argument count in call ((lambda (x . r) (eq? x (...))))".
|
|
3.mo:Expected error in mat letrec: "variable f is not bound".
|
|
3.mo:Expected error in mat letrec: "attempt to reference undefined variable a".
|
|
3.mo:Expected error in mat letrec: "attempt to assign undefined variable b".
|
|
--- 222,228 ----
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 2 to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 4 to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 2 to #<procedure foo>".
|
|
! 3.mo:Expected error in mat let: "incorrect argument count in call ((lambda (x . r) ((...) x (...))))".
|
|
3.mo:Expected error in mat letrec: "variable f is not bound".
|
|
3.mo:Expected error in mat letrec: "attempt to reference undefined variable a".
|
|
3.mo:Expected error in mat letrec: "attempt to assign undefined variable b".
|
|
***************
|
|
*** 320,331 ****
|
|
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "returned zero values to single value return context".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of values received in multiple value context".
|
|
! 3.mo:Expected error in mat mrvs: "returned zero values to single value return context".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of values received in multiple value context".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of values received in multiple value context".
|
|
3.mo:Expected error in mat mrvs: "variable $mrvs-foo is not bound".
|
|
! 3.mo:Expected error in mat mrvs: "attempt to apply non-procedure 17".
|
|
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "cdr: a is not a pair".
|
|
--- 320,331 ----
|
|
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "returned zero values to single value return context".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments 1 to #<procedure>".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments 0 to #<procedure>".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments 0 to #<procedure>".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments 0 to #<procedure>".
|
|
3.mo:Expected error in mat mrvs: "variable $mrvs-foo is not bound".
|
|
! 3.mo:Expected error in mat mrvs: "call-with-values: 17 is not a procedure".
|
|
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
|
|
3.mo:Expected error in mat mrvs: "cdr: a is not a pair".
|
|
***************
|
|
*** 362,369 ****
|
|
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
|
|
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
|
|
3.mo:Expected error in mat let*-values: "let-values: duplicate bound identifier x in (let*-values (((...) (...))) (list x w))".
|
|
! 4.mo:Expected error in mat apply: "incorrect argument count in call (apply)".
|
|
! 4.mo:Expected error in mat apply: "incorrect argument count in call (apply list)".
|
|
4.mo:Expected error in mat apply: "apply: 3 is not a proper list".
|
|
4.mo:Expected error in mat apply: "apply: 4 is not a proper list".
|
|
4.mo:Expected error in mat apply: "apply: (3 4 5 6 7 8 . 9) is not a proper list".
|
|
--- 362,369 ----
|
|
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
|
|
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
|
|
3.mo:Expected error in mat let*-values: "let-values: duplicate bound identifier x in (let*-values (((...) (...))) (list x w))".
|
|
! 4.mo:Expected error in mat apply: "incorrect number of arguments 0 to #<procedure apply>".
|
|
! 4.mo:Expected error in mat apply: "incorrect number of arguments 1 to #<procedure apply>".
|
|
4.mo:Expected error in mat apply: "apply: 3 is not a proper list".
|
|
4.mo:Expected error in mat apply: "apply: 4 is not a proper list".
|
|
4.mo:Expected error in mat apply: "apply: (3 4 5 6 7 8 . 9) is not a proper list".
|
|
***************
|
|
*** 656,685 ****
|
|
4.mo:Expected error in mat dynamic-wind: "variable gook is not bound".
|
|
4.mo:Expected error in mat dynamic-wind: "variable gook is not bound".
|
|
4.mo:Expected error in mat call/1cc: "attempt to invoke shot one-shot continuation".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (current-continuation-attachments (quote ()))".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (call-setting-continuation-attachment (quote any))".
|
|
4.mo:Expected error in mat continuation-attachments: "call-setting-continuation-attachment: 10 is not a procedure".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (call-setting-continuation-attachment (quote any) void (quote bad-more))".
|
|
4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 0 to #<procedure>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (call-getting-continuation-attachment (quote none))".
|
|
4.mo:Expected error in mat continuation-attachments: "call-getting-continuation-attachment: 10 is not a procedure".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (call-getting-continuation-attachment (quote none) (lambda (a) a) (quote bad-more))".
|
|
4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure void>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (call-consuming-continuation-attachment (quote none))".
|
|
4.mo:Expected error in mat continuation-attachments: "call-consuming-continuation-attachment: 10 is not a procedure".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (call-consuming-continuation-attachment (quote none) (lambda (a) a) (quote bad-more))".
|
|
4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure void>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (continuation-next-attachments)".
|
|
4.mo:Expected error in mat continuation-attachments: "continuation-next-attachments: 10 is not a continuation".
|
|
4.mo:Expected error in mat continuation-attachments: "continuation-next-attachments: #<procedure> is not a continuation".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect argument count in call (continuation-next-attachments (call/cc (lambda (...) x)) (quote bad-more))".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure also-something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure also-something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure also-something-else".
|
|
! 4.mo:Expected error in mat call-in-continuation: "incorrect argument count in call (call-in-continuation 1)".
|
|
4.mo:Expected error in mat call-in-continuation: "call-in-other-continuation: 1 is not a continuation".
|
|
4.mo:Expected error in mat call-in-continuation: "call-in-other-continuation: #<procedure> is not a continuation".
|
|
4.mo:Expected error in mat call-in-continuation: "call-in-other-continuation: #f is not an extension of of the attachments of #<continuation>".
|
|
--- 656,685 ----
|
|
4.mo:Expected error in mat dynamic-wind: "variable gook is not bound".
|
|
4.mo:Expected error in mat dynamic-wind: "variable gook is not bound".
|
|
4.mo:Expected error in mat call/1cc: "attempt to invoke shot one-shot continuation".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure current-continuation-attachments>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure call-setting-continuation-attachment>".
|
|
4.mo:Expected error in mat continuation-attachments: "call-setting-continuation-attachment: 10 is not a procedure".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 3 to #<procedure call-setting-continuation-attachment>".
|
|
4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 0 to #<procedure>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure call-getting-continuation-attachment>".
|
|
4.mo:Expected error in mat continuation-attachments: "call-getting-continuation-attachment: 10 is not a procedure".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 3 to #<procedure call-getting-continuation-attachment>".
|
|
4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure void>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure call-consuming-continuation-attachment>".
|
|
4.mo:Expected error in mat continuation-attachments: "call-consuming-continuation-attachment: 10 is not a procedure".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 3 to #<procedure call-consuming-continuation-attachment>".
|
|
4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 1 to #<procedure void>".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 0 to #<procedure continuation-next-attachments>".
|
|
4.mo:Expected error in mat continuation-attachments: "continuation-next-attachments: 10 is not a continuation".
|
|
4.mo:Expected error in mat continuation-attachments: "continuation-next-attachments: #<procedure> is not a continuation".
|
|
! 4.mo:Expected error in mat continuation-attachments: "incorrect number of arguments 2 to #<procedure continuation-next-attachments>".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure also-something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure also-something-else".
|
|
4.mo:Expected error in mat continuation-attachments: "attempt to apply non-procedure also-something-else".
|
|
! 4.mo:Expected error in mat call-in-continuation: "incorrect number of arguments 1 to #<procedure call-in-continuation>".
|
|
4.mo:Expected error in mat call-in-continuation: "call-in-other-continuation: 1 is not a continuation".
|
|
4.mo:Expected error in mat call-in-continuation: "call-in-other-continuation: #<procedure> is not a continuation".
|
|
4.mo:Expected error in mat call-in-continuation: "call-in-other-continuation: #f is not an extension of of the attachments of #<continuation>".
|
|
***************
|
|
*** 693,700 ****
|
|
4.mo:Expected error in mat $primitive: "invalid primitive name fubar".
|
|
4.mo:Expected error in mat $primitive: "incorrect argument count in call (car (quote a) (quote b))".
|
|
4.mo:Expected error in mat $primitive: "car: 3 is not a pair".
|
|
! 5_1.mo:Expected error in mat boolean=?: "incorrect argument count in call (boolean=?)".
|
|
! 5_1.mo:Expected error in mat boolean=?: "incorrect argument count in call (boolean=? #f)".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
--- 693,700 ----
|
|
4.mo:Expected error in mat $primitive: "invalid primitive name fubar".
|
|
4.mo:Expected error in mat $primitive: "incorrect argument count in call (car (quote a) (quote b))".
|
|
4.mo:Expected error in mat $primitive: "car: 3 is not a pair".
|
|
! 5_1.mo:Expected error in mat boolean=?: "incorrect number of arguments 0 to #<procedure boolean=?>".
|
|
! 5_1.mo:Expected error in mat boolean=?: "incorrect number of arguments 1 to #<procedure boolean=?>".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
***************
|
|
*** 704,711 ****
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
! 5_1.mo:Expected error in mat symbol=?: "incorrect argument count in call (symbol=?)".
|
|
! 5_1.mo:Expected error in mat symbol=?: "incorrect argument count in call (symbol=? (quote f))".
|
|
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
|
|
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
|
|
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
|
|
--- 704,711 ----
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
|
|
! 5_1.mo:Expected error in mat symbol=?: "incorrect number of arguments 0 to #<procedure symbol=?>".
|
|
! 5_1.mo:Expected error in mat symbol=?: "incorrect number of arguments 1 to #<procedure symbol=?>".
|
|
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
|
|
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
|
|
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
|
|
***************
|
|
*** 747,754 ****
|
|
5_2.mo:Expected error in mat c....r-errors: "cddadr: incorrect list structure (a . b)".
|
|
5_2.mo:Expected error in mat c....r-errors: "cdddar: incorrect list structure (a . b)".
|
|
5_2.mo:Expected error in mat c....r-errors: "cddddr: incorrect list structure (a . b)".
|
|
! 5_2.mo:Expected error in mat list*: "incorrect argument count in call (list*)".
|
|
! 5_2.mo:Expected error in mat cons*: "incorrect argument count in call (cons*)".
|
|
5_2.mo:Expected error in mat list-ref: "list-ref: a is not a proper list".
|
|
5_2.mo:Expected error in mat list-ref: "list-ref: (a b . c) is not a proper list".
|
|
5_2.mo:Expected error in mat list-ref: "list-ref: index 4 is out of range for list (a b)".
|
|
--- 747,754 ----
|
|
5_2.mo:Expected error in mat c....r-errors: "cddadr: incorrect list structure (a . b)".
|
|
5_2.mo:Expected error in mat c....r-errors: "cdddar: incorrect list structure (a . b)".
|
|
5_2.mo:Expected error in mat c....r-errors: "cddddr: incorrect list structure (a . b)".
|
|
! 5_2.mo:Expected error in mat list*: "incorrect number of arguments -1 to #<procedure list*>".
|
|
! 5_2.mo:Expected error in mat cons*: "incorrect number of arguments -1 to #<procedure cons*>".
|
|
5_2.mo:Expected error in mat list-ref: "list-ref: a is not a proper list".
|
|
5_2.mo:Expected error in mat list-ref: "list-ref: (a b . c) is not a proper list".
|
|
5_2.mo:Expected error in mat list-ref: "list-ref: index 4 is out of range for list (a b)".
|
|
***************
|
|
*** 835,847 ****
|
|
5_2.mo:Expected error in mat append!: "append!: (b a b a b a ...) is circular".
|
|
5_2.mo:Expected error in mat append!: "append!: (c d a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat append!: "append!: (a b . c) is not a proper list".
|
|
! 5_2.mo:Expected error in mat reverse: "incorrect argument count in call (reverse)".
|
|
5_2.mo:Expected error in mat reverse: "reverse: a is not a proper list".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (a b . c) is not a proper list".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (b a b a b a ...) is circular".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
|
|
! 5_2.mo:Expected error in mat reverse!: "incorrect argument count in call (reverse!)".
|
|
5_2.mo:Expected error in mat reverse!: "reverse!: a is not a proper list".
|
|
5_2.mo:Expected error in mat reverse!: "reverse!: (a b . c) is not a proper list".
|
|
5_2.mo:Expected error in mat reverse!: "reverse!: (a b a b a b ...) is circular".
|
|
--- 835,847 ----
|
|
5_2.mo:Expected error in mat append!: "append!: (b a b a b a ...) is circular".
|
|
5_2.mo:Expected error in mat append!: "append!: (c d a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat append!: "append!: (a b . c) is not a proper list".
|
|
! 5_2.mo:Expected error in mat reverse: "incorrect number of arguments 0 to #<procedure reverse>".
|
|
5_2.mo:Expected error in mat reverse: "reverse: a is not a proper list".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (a b . c) is not a proper list".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (b a b a b a ...) is circular".
|
|
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
|
|
! 5_2.mo:Expected error in mat reverse!: "incorrect number of arguments 0 to #<procedure reverse!>".
|
|
5_2.mo:Expected error in mat reverse!: "reverse!: a is not a proper list".
|
|
5_2.mo:Expected error in mat reverse!: "reverse!: (a b . c) is not a proper list".
|
|
5_2.mo:Expected error in mat reverse!: "reverse!: (a b a b a b ...) is circular".
|
|
***************
|
|
*** 854,871 ****
|
|
5_2.mo:Expected error in mat find: "find: improper list (a b . c)".
|
|
5_2.mo:Expected error in mat find: "find: improper list (a b c . d)".
|
|
5_2.mo:Expected error in mat find: "find: a is not a procedure".
|
|
! 5_2.mo:Expected error in mat memq: "incorrect argument count in call (memq)".
|
|
! 5_2.mo:Expected error in mat memq: "incorrect argument count in call (memq (quote c))".
|
|
5_2.mo:Expected error in mat memq: "memq: improper list a".
|
|
5_2.mo:Expected error in mat memq: "memq: cyclic list (a b a b a b ...)".
|
|
5_2.mo:Expected error in mat memq: "memq: improper list (a b . c)".
|
|
! 5_2.mo:Expected error in mat memv: "incorrect argument count in call (memv)".
|
|
! 5_2.mo:Expected error in mat memv: "incorrect argument count in call (memv (quote c))".
|
|
5_2.mo:Expected error in mat memv: "memv: improper list a".
|
|
5_2.mo:Expected error in mat memv: "memv: cyclic list (a b a b a b ...)".
|
|
5_2.mo:Expected error in mat memv: "memv: improper list (a b . c)".
|
|
! 5_2.mo:Expected error in mat member: "incorrect argument count in call (member)".
|
|
! 5_2.mo:Expected error in mat member: "incorrect argument count in call (member (quote c))".
|
|
5_2.mo:Expected error in mat member: "member: improper list a".
|
|
5_2.mo:Expected error in mat member: "member: cyclic list (a b a b a b ...)".
|
|
5_2.mo:Expected error in mat member: "member: improper list (a b . c)".
|
|
--- 854,871 ----
|
|
5_2.mo:Expected error in mat find: "find: improper list (a b . c)".
|
|
5_2.mo:Expected error in mat find: "find: improper list (a b c . d)".
|
|
5_2.mo:Expected error in mat find: "find: a is not a procedure".
|
|
! 5_2.mo:Expected error in mat memq: "incorrect number of arguments 0 to #<procedure memq>".
|
|
! 5_2.mo:Expected error in mat memq: "incorrect number of arguments 1 to #<procedure memq>".
|
|
5_2.mo:Expected error in mat memq: "memq: improper list a".
|
|
5_2.mo:Expected error in mat memq: "memq: cyclic list (a b a b a b ...)".
|
|
5_2.mo:Expected error in mat memq: "memq: improper list (a b . c)".
|
|
! 5_2.mo:Expected error in mat memv: "incorrect number of arguments 0 to #<procedure memv>".
|
|
! 5_2.mo:Expected error in mat memv: "incorrect number of arguments 1 to #<procedure memv>".
|
|
5_2.mo:Expected error in mat memv: "memv: improper list a".
|
|
5_2.mo:Expected error in mat memv: "memv: cyclic list (a b a b a b ...)".
|
|
5_2.mo:Expected error in mat memv: "memv: improper list (a b . c)".
|
|
! 5_2.mo:Expected error in mat member: "incorrect number of arguments 0 to #<procedure member>".
|
|
! 5_2.mo:Expected error in mat member: "incorrect number of arguments 1 to #<procedure member>".
|
|
5_2.mo:Expected error in mat member: "member: improper list a".
|
|
5_2.mo:Expected error in mat member: "member: cyclic list (a b a b a b ...)".
|
|
5_2.mo:Expected error in mat member: "member: improper list (a b . c)".
|
|
***************
|
|
*** 908,917 ****
|
|
5_2.mo:Expected error in mat assv: "assv: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
|
|
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
|
|
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort)".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort >)".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort (quote (a b c)))".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort > (quote (1 2 3)) #t)".
|
|
5_2.mo:Expected error in mat sort: "sort: 3 is not a proper list".
|
|
5_2.mo:Expected error in mat sort: "sort: #(1 2 3) is not a proper list".
|
|
5_2.mo:Expected error in mat sort: "sort: (1 2 . 3) is not a proper list".
|
|
--- 908,917 ----
|
|
5_2.mo:Expected error in mat assv: "assv: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
|
|
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
|
|
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments 0 to #<procedure sort>".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments 1 to #<procedure sort>".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments 1 to #<procedure sort>".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments 3 to #<procedure sort>".
|
|
5_2.mo:Expected error in mat sort: "sort: 3 is not a proper list".
|
|
5_2.mo:Expected error in mat sort: "sort: #(1 2 3) is not a proper list".
|
|
5_2.mo:Expected error in mat sort: "sort: (1 2 . 3) is not a proper list".
|
|
***************
|
|
*** 920,929 ****
|
|
5_2.mo:Expected error in mat sort: "sort: (q p a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat sort: "sort: (a b c) is not a procedure".
|
|
5_2.mo:Expected error in mat sort: ">: b is not a real number".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort)".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort >)".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort (quote (a b c)))".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort > (quote (1 2 3)) #t)".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: 3 is not a proper list".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: #(1 2 3) is not a proper list".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: (1 2 . 3) is not a proper list".
|
|
--- 920,929 ----
|
|
5_2.mo:Expected error in mat sort: "sort: (q p a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat sort: "sort: (a b c) is not a procedure".
|
|
5_2.mo:Expected error in mat sort: ">: b is not a real number".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments 0 to #<procedure list-sort>".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments 1 to #<procedure list-sort>".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments 1 to #<procedure list-sort>".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments 3 to #<procedure list-sort>".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: 3 is not a proper list".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: #(1 2 3) is not a proper list".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: (1 2 . 3) is not a proper list".
|
|
***************
|
|
*** 932,941 ****
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: (q p a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: (a b c) is not a procedure".
|
|
5_2.mo:Expected error in mat list-sort: ">: b is not a real number".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort!)".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort! >)".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort! (quote (a b c)))".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort! > (quote (1 2 3)) #t)".
|
|
5_2.mo:Expected error in mat sort!: "sort!: 3 is not a proper list".
|
|
5_2.mo:Expected error in mat sort!: "sort!: #(1 2 3) is not a proper list".
|
|
5_2.mo:Expected error in mat sort!: "sort!: (1 2 . 3) is not a proper list".
|
|
--- 932,941 ----
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: (q p a b a b ...) is circular".
|
|
5_2.mo:Expected error in mat list-sort: "list-sort: (a b c) is not a procedure".
|
|
5_2.mo:Expected error in mat list-sort: ">: b is not a real number".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments 0 to #<procedure sort!>".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments 1 to #<procedure sort!>".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments 1 to #<procedure sort!>".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments 3 to #<procedure sort!>".
|
|
5_2.mo:Expected error in mat sort!: "sort!: 3 is not a proper list".
|
|
5_2.mo:Expected error in mat sort!: "sort!: #(1 2 3) is not a proper list".
|
|
5_2.mo:Expected error in mat sort!: "sort!: (1 2 . 3) is not a proper list".
|
|
***************
|
|
*** 964,981 ****
|
|
5_2.mo:Expected error in mat iota: "iota: -1 is not a nonnegative fixnum".
|
|
5_2.mo:Expected error in mat iota: "iota: 1000000000000000000000000000000 is not a nonnegative fixnum".
|
|
5_2.mo:Expected error in mat iota: "iota: 3/4 is not a nonnegative fixnum".
|
|
! 5_2.mo:Expected error in mat iota: "incorrect argument count in call (iota)".
|
|
! 5_2.mo:Expected error in mat iota: "incorrect argument count in call (iota 3 17)".
|
|
5_2.mo:Expected error in mat enumerate: "enumerate: a is not a proper list".
|
|
5_2.mo:Expected error in mat enumerate: "enumerate: (a . b) is not a proper list".
|
|
5_2.mo:Expected error in mat enumerate: "enumerate: (a b a b a b ...) is circular".
|
|
! 5_2.mo:Expected error in mat enumerate: "incorrect argument count in call (enumerate)".
|
|
! 5_2.mo:Expected error in mat enumerate: "incorrect argument count in call (enumerate (quote (a b c)) (quote (d e f)))".
|
|
5_3.mo:Expected error in mat string->number: "string->number: a is not a string".
|
|
5_3.mo:Expected error in mat string->number: "string->number: 0 is not a valid radix".
|
|
5_3.mo:Expected error in mat string->number: "string->number: 37 is not a valid radix".
|
|
5_3.mo:Expected error in mat string->number: "string->number: a is not a valid radix".
|
|
! 5_3.mo:Expected error in mat string->number: "incorrect argument count in call (string->number "a" 10 10)".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a string".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 0 is not a valid radix".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 37 is not a valid radix".
|
|
--- 964,981 ----
|
|
5_2.mo:Expected error in mat iota: "iota: -1 is not a nonnegative fixnum".
|
|
5_2.mo:Expected error in mat iota: "iota: 1000000000000000000000000000000 is not a nonnegative fixnum".
|
|
5_2.mo:Expected error in mat iota: "iota: 3/4 is not a nonnegative fixnum".
|
|
! 5_2.mo:Expected error in mat iota: "incorrect number of arguments 0 to #<procedure iota>".
|
|
! 5_2.mo:Expected error in mat iota: "incorrect number of arguments 2 to #<procedure iota>".
|
|
5_2.mo:Expected error in mat enumerate: "enumerate: a is not a proper list".
|
|
5_2.mo:Expected error in mat enumerate: "enumerate: (a . b) is not a proper list".
|
|
5_2.mo:Expected error in mat enumerate: "enumerate: (a b a b a b ...) is circular".
|
|
! 5_2.mo:Expected error in mat enumerate: "incorrect number of arguments 0 to #<procedure enumerate>".
|
|
! 5_2.mo:Expected error in mat enumerate: "incorrect number of arguments 2 to #<procedure enumerate>".
|
|
5_3.mo:Expected error in mat string->number: "string->number: a is not a string".
|
|
5_3.mo:Expected error in mat string->number: "string->number: 0 is not a valid radix".
|
|
5_3.mo:Expected error in mat string->number: "string->number: 37 is not a valid radix".
|
|
5_3.mo:Expected error in mat string->number: "string->number: a is not a valid radix".
|
|
! 5_3.mo:Expected error in mat string->number: "incorrect number of arguments 3 to #<procedure string->number>".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a string".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 0 is not a valid radix".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 37 is not a valid radix".
|
|
***************
|
|
*** 986,992 ****
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: <int> is not a valid radix".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 36 is not a valid radix".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a valid radix".
|
|
! 5_3.mo:Expected error in mat r6rs:string->number: "incorrect argument count in call (string->number "a" 10 10)".
|
|
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
|
|
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
|
|
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
|
|
--- 986,992 ----
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: <int> is not a valid radix".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 36 is not a valid radix".
|
|
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a valid radix".
|
|
! 5_3.mo:Expected error in mat r6rs:string->number: "incorrect number of arguments 3 to #<procedure string->number>".
|
|
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
|
|
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
|
|
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
|
|
***************
|
|
*** 1022,1028 ****
|
|
5_3.mo:Expected error in mat r6rs:number->string: "number->string: a precision is specified and radix 16 is not 10".
|
|
5_3.mo:Expected error in mat exact?: "exact?: a is not a number".
|
|
5_3.mo:Expected error in mat inexact?: "inexact?: () is not a number".
|
|
! 5_3.mo:Expected error in mat =: "incorrect argument count in call (=)".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
--- 1022,1028 ----
|
|
5_3.mo:Expected error in mat r6rs:number->string: "number->string: a precision is specified and radix 16 is not 10".
|
|
5_3.mo:Expected error in mat exact?: "exact?: a is not a number".
|
|
5_3.mo:Expected error in mat inexact?: "inexact?: () is not a number".
|
|
! 5_3.mo:Expected error in mat =: "incorrect number of arguments 0 to #<procedure =>".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
***************
|
|
*** 1031,1037 ****
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
! 5_3.mo:Expected error in mat <: "incorrect argument count in call (<)".
|
|
5_3.mo:Expected error in mat <: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: a is not a real number".
|
|
--- 1031,1037 ----
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
5_3.mo:Expected error in mat =: "=: a is not a number".
|
|
! 5_3.mo:Expected error in mat <: "incorrect number of arguments 0 to #<procedure <>".
|
|
5_3.mo:Expected error in mat <: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: a is not a real number".
|
|
***************
|
|
*** 1051,1057 ****
|
|
5_3.mo:Expected error in mat <: "<: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat <=: "incorrect argument count in call (<=)".
|
|
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
|
|
--- 1051,1057 ----
|
|
5_3.mo:Expected error in mat <: "<: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat <: "<: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat <=: "incorrect number of arguments 0 to #<procedure <=>".
|
|
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
|
|
***************
|
|
*** 1071,1077 ****
|
|
5_3.mo:Expected error in mat <=: "<=: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat >: "incorrect argument count in call (>)".
|
|
5_3.mo:Expected error in mat >: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: a is not a real number".
|
|
--- 1071,1077 ----
|
|
5_3.mo:Expected error in mat <=: "<=: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat <=: "<=: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat >: "incorrect number of arguments 0 to #<procedure >>".
|
|
5_3.mo:Expected error in mat >: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: a is not a real number".
|
|
***************
|
|
*** 1091,1097 ****
|
|
5_3.mo:Expected error in mat >: ">: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat >=: "incorrect argument count in call (>=)".
|
|
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
|
|
--- 1091,1097 ----
|
|
5_3.mo:Expected error in mat >: ">: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat >: ">: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat >=: "incorrect number of arguments 0 to #<procedure >=>".
|
|
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
|
|
***************
|
|
*** 1111,1118 ****
|
|
5_3.mo:Expected error in mat >=: ">=: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:=: "incorrect argument count in call (=)".
|
|
! 5_3.mo:Expected error in mat r6rs:=: "incorrect argument count in call (= 3)".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
--- 1111,1118 ----
|
|
5_3.mo:Expected error in mat >=: ">=: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat >=: ">=: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:=: "incorrect number of arguments 0 to #<procedure =>".
|
|
! 5_3.mo:Expected error in mat r6rs:=: "incorrect number of arguments 1 to #<procedure =>".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
***************
|
|
*** 1120,1127 ****
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
! 5_3.mo:Expected error in mat r6rs:<: "incorrect argument count in call (<)".
|
|
! 5_3.mo:Expected error in mat r6rs:<: "incorrect argument count in call (< 3)".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
|
|
--- 1120,1127 ----
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
|
|
! 5_3.mo:Expected error in mat r6rs:<: "incorrect number of arguments 0 to #<procedure <>".
|
|
! 5_3.mo:Expected error in mat r6rs:<: "incorrect number of arguments 1 to #<procedure <>".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
|
|
***************
|
|
*** 1132,1139 ****
|
|
5_3.mo:Expected error in mat r6rs:<: "<: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect argument count in call (<=)".
|
|
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect argument count in call (<= 3)".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
|
|
--- 1132,1139 ----
|
|
5_3.mo:Expected error in mat r6rs:<: "<: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<: "<: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect number of arguments 0 to #<procedure <=>".
|
|
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect number of arguments 1 to #<procedure <=>".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
|
|
***************
|
|
*** 1144,1151 ****
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:>: "incorrect argument count in call (>)".
|
|
! 5_3.mo:Expected error in mat r6rs:>: "incorrect argument count in call (> 3)".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
|
|
--- 1144,1151 ----
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:<=: "<=: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:>: "incorrect number of arguments 0 to #<procedure >>".
|
|
! 5_3.mo:Expected error in mat r6rs:>: "incorrect number of arguments 1 to #<procedure >>".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
|
|
***************
|
|
*** 1156,1163 ****
|
|
5_3.mo:Expected error in mat r6rs:>: ">: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect argument count in call (>=)".
|
|
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect argument count in call (>= 3)".
|
|
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
|
|
--- 1156,1163 ----
|
|
5_3.mo:Expected error in mat r6rs:>: ">: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>: ">: 3+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect number of arguments 0 to #<procedure >=>".
|
|
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect number of arguments 1 to #<procedure >=>".
|
|
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
|
|
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
|
|
***************
|
|
*** 1177,1183 ****
|
|
5_3.mo:Expected error in mat +: "oops".
|
|
5_3.mo:Expected error in mat +: "+: #f is not a number".
|
|
5_3.mo:Expected error in mat +: "+: #f is not a number".
|
|
! 5_3.mo:Expected error in mat -: "incorrect argument count in call (-)".
|
|
5_3.mo:Expected error in mat -: "-: a is not a number".
|
|
5_3.mo:Expected error in mat -: "-: a is not a number".
|
|
5_3.mo:Expected error in mat -: "-: a is not a number".
|
|
--- 1177,1183 ----
|
|
5_3.mo:Expected error in mat +: "oops".
|
|
5_3.mo:Expected error in mat +: "+: #f is not a number".
|
|
5_3.mo:Expected error in mat +: "+: #f is not a number".
|
|
! 5_3.mo:Expected error in mat -: "incorrect number of arguments 0 to #<procedure ->".
|
|
5_3.mo:Expected error in mat -: "-: a is not a number".
|
|
5_3.mo:Expected error in mat -: "-: a is not a number".
|
|
5_3.mo:Expected error in mat -: "-: a is not a number".
|
|
***************
|
|
*** 1190,1196 ****
|
|
5_3.mo:Expected error in mat *: "*: a is not a number".
|
|
5_3.mo:Expected error in mat *: "*: #f is not a number".
|
|
5_3.mo:Expected error in mat *: "*: #f is not a number".
|
|
! 5_3.mo:Expected error in mat /: "incorrect argument count in call (/)".
|
|
5_3.mo:Expected error in mat /: "/: a is not a number".
|
|
5_3.mo:Expected error in mat /: "/: a is not a number".
|
|
5_3.mo:Expected error in mat /: "/: a is not a number".
|
|
--- 1190,1196 ----
|
|
5_3.mo:Expected error in mat *: "*: a is not a number".
|
|
5_3.mo:Expected error in mat *: "*: #f is not a number".
|
|
5_3.mo:Expected error in mat *: "*: #f is not a number".
|
|
! 5_3.mo:Expected error in mat /: "incorrect number of arguments 0 to #<procedure />".
|
|
5_3.mo:Expected error in mat /: "/: a is not a number".
|
|
5_3.mo:Expected error in mat /: "/: a is not a number".
|
|
5_3.mo:Expected error in mat /: "/: a is not a number".
|
|
***************
|
|
*** 1207,1274 ****
|
|
5_3.mo:Expected error in mat infinite?: "infinite?: a is not a real number".
|
|
5_3.mo:Expected error in mat infinite?: "infinite?: 3+4i is not a real number".
|
|
5_3.mo:Expected error in mat infinite?: "infinite?: 3.0-0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat zero?: "incorrect argument count in call (zero?)".
|
|
! 5_3.mo:Expected error in mat zero?: "incorrect argument count in call (zero? 0 1)".
|
|
5_3.mo:Expected error in mat zero?: "zero?: a is not a number".
|
|
! 5_3.mo:Expected error in mat positive?: "incorrect argument count in call (positive?)".
|
|
! 5_3.mo:Expected error in mat positive?: "incorrect argument count in call (positive? 0 1)".
|
|
5_3.mo:Expected error in mat positive?: "positive?: a is not a real number".
|
|
5_3.mo:Expected error in mat positive?: "positive?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat positive?: "positive?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat positive?: "positive?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat nonpositive?: "incorrect argument count in call (nonpositive?)".
|
|
! 5_3.mo:Expected error in mat nonpositive?: "incorrect argument count in call (nonpositive? 0 1)".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: a is not a real number".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat negative?: "incorrect argument count in call (negative?)".
|
|
! 5_3.mo:Expected error in mat negative?: "incorrect argument count in call (negative? 0 1)".
|
|
5_3.mo:Expected error in mat negative?: "negative?: a is not a real number".
|
|
5_3.mo:Expected error in mat negative?: "negative?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat negative?: "negative?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat negative?: "negative?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat nonnegative?: "incorrect argument count in call (nonnegative?)".
|
|
! 5_3.mo:Expected error in mat nonnegative?: "incorrect argument count in call (nonnegative? 0 1)".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: a is not a real number".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat even?: "incorrect argument count in call (even?)".
|
|
! 5_3.mo:Expected error in mat even?: "incorrect argument count in call (even? 0 1)".
|
|
5_3.mo:Expected error in mat even?: "even?: a is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: 3.2 is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: 3.0+1.0i is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: 1+1i is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: +inf.0 is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: +nan.0 is not an integer".
|
|
! 5_3.mo:Expected error in mat odd?: "incorrect argument count in call (odd?)".
|
|
! 5_3.mo:Expected error in mat odd?: "incorrect argument count in call (odd? 0 1)".
|
|
5_3.mo:Expected error in mat odd?: "odd?: a is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: 3.2 is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: 3.0+1.0i is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: 3+1i is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: +inf.0 is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: +nan.0 is not an integer".
|
|
! 5_3.mo:Expected error in mat \x31;+: "incorrect argument count in call (\x31;+)".
|
|
! 5_3.mo:Expected error in mat \x31;+: "incorrect argument count in call (\x31;+ 0 1)".
|
|
5_3.mo:Expected error in mat \x31;+: "1+: a is not a number".
|
|
! 5_3.mo:Expected error in mat add1: "incorrect argument count in call (add1)".
|
|
! 5_3.mo:Expected error in mat add1: "incorrect argument count in call (add1 0 1)".
|
|
5_3.mo:Expected error in mat add1: "add1: a is not a number".
|
|
! 5_3.mo:Expected error in mat \x31;-: "incorrect argument count in call (\x31;-)".
|
|
! 5_3.mo:Expected error in mat \x31;-: "incorrect argument count in call (\x31;- 0 1)".
|
|
5_3.mo:Expected error in mat \x31;-: "1-: a is not a number".
|
|
! 5_3.mo:Expected error in mat sub1: "incorrect argument count in call (sub1)".
|
|
! 5_3.mo:Expected error in mat sub1: "incorrect argument count in call (sub1 0 1)".
|
|
5_3.mo:Expected error in mat sub1: "sub1: a is not a number".
|
|
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect argument count in call (\x2D;1+)".
|
|
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect argument count in call (\x2D;1+ 0 1)".
|
|
5_3.mo:Expected error in mat \x2D;1+: "-1+: a is not a number".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect argument count in call (quotient)".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect argument count in call (quotient 1)".
|
|
5_3.mo:Expected error in mat quotient: "quotient: undefined for 0".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect argument count in call (quotient 1 2 3)".
|
|
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2/5 is not an integer".
|
|
--- 1207,1274 ----
|
|
5_3.mo:Expected error in mat infinite?: "infinite?: a is not a real number".
|
|
5_3.mo:Expected error in mat infinite?: "infinite?: 3+4i is not a real number".
|
|
5_3.mo:Expected error in mat infinite?: "infinite?: 3.0-0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat zero?: "incorrect number of arguments 0 to #<procedure zero?>".
|
|
! 5_3.mo:Expected error in mat zero?: "incorrect number of arguments 2 to #<procedure zero?>".
|
|
5_3.mo:Expected error in mat zero?: "zero?: a is not a number".
|
|
! 5_3.mo:Expected error in mat positive?: "incorrect number of arguments 0 to #<procedure positive?>".
|
|
! 5_3.mo:Expected error in mat positive?: "incorrect number of arguments 2 to #<procedure positive?>".
|
|
5_3.mo:Expected error in mat positive?: "positive?: a is not a real number".
|
|
5_3.mo:Expected error in mat positive?: "positive?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat positive?: "positive?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat positive?: "positive?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat nonpositive?: "incorrect number of arguments 0 to #<procedure nonpositive?>".
|
|
! 5_3.mo:Expected error in mat nonpositive?: "incorrect number of arguments 2 to #<procedure nonpositive?>".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: a is not a real number".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat negative?: "incorrect number of arguments 0 to #<procedure negative?>".
|
|
! 5_3.mo:Expected error in mat negative?: "incorrect number of arguments 2 to #<procedure negative?>".
|
|
5_3.mo:Expected error in mat negative?: "negative?: a is not a real number".
|
|
5_3.mo:Expected error in mat negative?: "negative?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat negative?: "negative?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat negative?: "negative?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat nonnegative?: "incorrect number of arguments 0 to #<procedure nonnegative?>".
|
|
! 5_3.mo:Expected error in mat nonnegative?: "incorrect number of arguments 2 to #<procedure nonnegative?>".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: a is not a real number".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1+1i is not a real number".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat even?: "incorrect number of arguments 0 to #<procedure even?>".
|
|
! 5_3.mo:Expected error in mat even?: "incorrect number of arguments 2 to #<procedure even?>".
|
|
5_3.mo:Expected error in mat even?: "even?: a is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: 3.2 is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: 3.0+1.0i is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: 1+1i is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: +inf.0 is not an integer".
|
|
5_3.mo:Expected error in mat even?: "even?: +nan.0 is not an integer".
|
|
! 5_3.mo:Expected error in mat odd?: "incorrect number of arguments 0 to #<procedure odd?>".
|
|
! 5_3.mo:Expected error in mat odd?: "incorrect number of arguments 2 to #<procedure odd?>".
|
|
5_3.mo:Expected error in mat odd?: "odd?: a is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: 3.2 is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: 3.0+1.0i is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: 3+1i is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: +inf.0 is not an integer".
|
|
5_3.mo:Expected error in mat odd?: "odd?: +nan.0 is not an integer".
|
|
! 5_3.mo:Expected error in mat \x31;+: "incorrect number of arguments 0 to #<procedure 1+>".
|
|
! 5_3.mo:Expected error in mat \x31;+: "incorrect number of arguments 2 to #<procedure 1+>".
|
|
5_3.mo:Expected error in mat \x31;+: "1+: a is not a number".
|
|
! 5_3.mo:Expected error in mat add1: "incorrect number of arguments 0 to #<procedure add1>".
|
|
! 5_3.mo:Expected error in mat add1: "incorrect number of arguments 2 to #<procedure add1>".
|
|
5_3.mo:Expected error in mat add1: "add1: a is not a number".
|
|
! 5_3.mo:Expected error in mat \x31;-: "incorrect number of arguments 0 to #<procedure 1->".
|
|
! 5_3.mo:Expected error in mat \x31;-: "incorrect number of arguments 2 to #<procedure 1->".
|
|
5_3.mo:Expected error in mat \x31;-: "1-: a is not a number".
|
|
! 5_3.mo:Expected error in mat sub1: "incorrect number of arguments 0 to #<procedure sub1>".
|
|
! 5_3.mo:Expected error in mat sub1: "incorrect number of arguments 2 to #<procedure sub1>".
|
|
5_3.mo:Expected error in mat sub1: "sub1: a is not a number".
|
|
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect number of arguments 0 to #<procedure -1+>".
|
|
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect number of arguments 2 to #<procedure -1+>".
|
|
5_3.mo:Expected error in mat \x2D;1+: "-1+: a is not a number".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments 0 to #<procedure quotient>".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments 1 to #<procedure quotient>".
|
|
5_3.mo:Expected error in mat quotient: "quotient: undefined for 0".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments 3 to #<procedure quotient>".
|
|
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2/5 is not an integer".
|
|
***************
|
|
*** 1281,1290 ****
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2.0+1.0i is not an integer".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect argument count in call (remainder)".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect argument count in call (remainder 1)".
|
|
5_3.mo:Expected error in mat remainder: "remainder: undefined for 0".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect argument count in call (remainder 1 2 3)".
|
|
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: 2/5 is not an integer".
|
|
--- 1281,1290 ----
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
|
|
5_3.mo:Expected error in mat quotient: "quotient: 2.0+1.0i is not an integer".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments 0 to #<procedure remainder>".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments 1 to #<procedure remainder>".
|
|
5_3.mo:Expected error in mat remainder: "remainder: undefined for 0".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments 3 to #<procedure remainder>".
|
|
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: 2/5 is not an integer".
|
|
***************
|
|
*** 1295,1303 ****
|
|
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: -3+2i is not an integer".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect argument count in call (modulo)".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect argument count in call (modulo 1)".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect argument count in call (modulo 1 2 3)".
|
|
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: 3/5 is not an integer".
|
|
--- 1295,1303 ----
|
|
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
|
|
5_3.mo:Expected error in mat remainder: "remainder: -3+2i is not an integer".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments 0 to #<procedure modulo>".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments 1 to #<procedure modulo>".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments 3 to #<procedure modulo>".
|
|
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: 3/5 is not an integer".
|
|
***************
|
|
*** 1307,1352 ****
|
|
5_3.mo:Expected error in mat modulo: "modulo: 3.2 is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: -3.2 is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: -3+2i is not an integer".
|
|
! 5_3.mo:Expected error in mat truncate: "incorrect argument count in call (truncate)".
|
|
! 5_3.mo:Expected error in mat truncate: "incorrect argument count in call (truncate 2 3)".
|
|
5_3.mo:Expected error in mat truncate: "truncate: a is not a real number".
|
|
5_3.mo:Expected error in mat truncate: "truncate: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat truncate: "truncate: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat truncate: "truncate: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat floor: "incorrect argument count in call (floor)".
|
|
! 5_3.mo:Expected error in mat floor: "incorrect argument count in call (floor 2 3)".
|
|
5_3.mo:Expected error in mat floor: "floor: a is not a real number".
|
|
5_3.mo:Expected error in mat floor: "floor: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat floor: "floor: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat floor: "floor: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat ceiling: "incorrect argument count in call (ceiling)".
|
|
! 5_3.mo:Expected error in mat ceiling: "incorrect argument count in call (ceiling 2 3)".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: a is not a real number".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: -1.7+0.0i is not a real number".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat round: "incorrect argument count in call (round)".
|
|
! 5_3.mo:Expected error in mat round: "incorrect argument count in call (round 2 3)".
|
|
5_3.mo:Expected error in mat round: "round: a is not a real number".
|
|
5_3.mo:Expected error in mat round: "round: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat round: "round: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat round: "round: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat abs: "incorrect argument count in call (abs)".
|
|
! 5_3.mo:Expected error in mat abs: "incorrect argument count in call (abs 1 2)".
|
|
5_3.mo:Expected error in mat abs: "abs: a is not a real number".
|
|
5_3.mo:Expected error in mat abs: "abs: 3+4i is not a real number".
|
|
5_3.mo:Expected error in mat abs: "abs: 3.0+4.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat magnitude: "incorrect argument count in call (magnitude)".
|
|
! 5_3.mo:Expected error in mat magnitude: "incorrect argument count in call (magnitude 1 2)".
|
|
5_3.mo:Expected error in mat magnitude: "magnitude: a is not a complex number".
|
|
! 5_3.mo:Expected error in mat max: "incorrect argument count in call (max)".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: 0.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: 0+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat min: "incorrect argument count in call (min)".
|
|
5_3.mo:Expected error in mat min: "min: a is not a real number".
|
|
5_3.mo:Expected error in mat min: "min: a is not a real number".
|
|
5_3.mo:Expected error in mat min: "min: a is not a real number".
|
|
--- 1307,1352 ----
|
|
5_3.mo:Expected error in mat modulo: "modulo: 3.2 is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: -3.2 is not an integer".
|
|
5_3.mo:Expected error in mat modulo: "modulo: -3+2i is not an integer".
|
|
! 5_3.mo:Expected error in mat truncate: "incorrect number of arguments 0 to #<procedure truncate>".
|
|
! 5_3.mo:Expected error in mat truncate: "incorrect number of arguments 2 to #<procedure truncate>".
|
|
5_3.mo:Expected error in mat truncate: "truncate: a is not a real number".
|
|
5_3.mo:Expected error in mat truncate: "truncate: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat truncate: "truncate: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat truncate: "truncate: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat floor: "incorrect number of arguments 0 to #<procedure floor>".
|
|
! 5_3.mo:Expected error in mat floor: "incorrect number of arguments 2 to #<procedure floor>".
|
|
5_3.mo:Expected error in mat floor: "floor: a is not a real number".
|
|
5_3.mo:Expected error in mat floor: "floor: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat floor: "floor: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat floor: "floor: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat ceiling: "incorrect number of arguments 0 to #<procedure ceiling>".
|
|
! 5_3.mo:Expected error in mat ceiling: "incorrect number of arguments 2 to #<procedure ceiling>".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: a is not a real number".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: -1.7+0.0i is not a real number".
|
|
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat round: "incorrect number of arguments 0 to #<procedure round>".
|
|
! 5_3.mo:Expected error in mat round: "incorrect number of arguments 2 to #<procedure round>".
|
|
5_3.mo:Expected error in mat round: "round: a is not a real number".
|
|
5_3.mo:Expected error in mat round: "round: 2.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat round: "round: 2+1i is not a real number".
|
|
5_3.mo:Expected error in mat round: "round: 2.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat abs: "incorrect number of arguments 0 to #<procedure abs>".
|
|
! 5_3.mo:Expected error in mat abs: "incorrect number of arguments 2 to #<procedure abs>".
|
|
5_3.mo:Expected error in mat abs: "abs: a is not a real number".
|
|
5_3.mo:Expected error in mat abs: "abs: 3+4i is not a real number".
|
|
5_3.mo:Expected error in mat abs: "abs: 3.0+4.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat magnitude: "incorrect number of arguments 0 to #<procedure magnitude>".
|
|
! 5_3.mo:Expected error in mat magnitude: "incorrect number of arguments 2 to #<procedure magnitude>".
|
|
5_3.mo:Expected error in mat magnitude: "magnitude: a is not a complex number".
|
|
! 5_3.mo:Expected error in mat max: "incorrect number of arguments 0 to #<procedure max>".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: a is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: 0.0+1.0i is not a real number".
|
|
5_3.mo:Expected error in mat max: "max: 0+1i is not a real number".
|
|
! 5_3.mo:Expected error in mat min: "incorrect number of arguments 0 to #<procedure min>".
|
|
5_3.mo:Expected error in mat min: "min: a is not a real number".
|
|
5_3.mo:Expected error in mat min: "min: a is not a real number".
|
|
5_3.mo:Expected error in mat min: "min: a is not a real number".
|
|
***************
|
|
*** 1405,1413 ****
|
|
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
|
|
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
|
|
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect argument count in call (expt)".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect argument count in call (expt 5)".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect argument count in call (expt 3 4 5)".
|
|
5_3.mo:Expected error in mat expt: "expt: a is not a number".
|
|
5_3.mo:Expected error in mat expt: "expt: a is not a number".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and -1".
|
|
--- 1405,1413 ----
|
|
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
|
|
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
|
|
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments 0 to #<procedure expt>".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments 1 to #<procedure expt>".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments 3 to #<procedure expt>".
|
|
5_3.mo:Expected error in mat expt: "expt: a is not a number".
|
|
5_3.mo:Expected error in mat expt: "expt: a is not a number".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and -1".
|
|
***************
|
|
*** 1420,1435 ****
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and +nan.0+3.0i".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and 0+3i".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and -1/2".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod)".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod 5)".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod 4 5)".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod 3 4 5 6)".
|
|
5_3.mo:Expected error in mat expt-mod: "expt-mod: a is not an integer".
|
|
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
|
|
! 5_3.mo:Expected error in mat random: "incorrect argument count in call (random)".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument 0+1i".
|
|
! 5_3.mo:Expected error in mat random: "incorrect argument count in call (random 1 2)".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument a".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument -3".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument 0".
|
|
--- 1420,1435 ----
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and +nan.0+3.0i".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and 0+3i".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and -1/2".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments 0 to #<procedure expt-mod>".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments 1 to #<procedure expt-mod>".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments 2 to #<procedure expt-mod>".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments 4 to #<procedure expt-mod>".
|
|
5_3.mo:Expected error in mat expt-mod: "expt-mod: a is not an integer".
|
|
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
|
|
! 5_3.mo:Expected error in mat random: "incorrect number of arguments 0 to #<procedure random>".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument 0+1i".
|
|
! 5_3.mo:Expected error in mat random: "incorrect number of arguments 2 to #<procedure random>".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument a".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument -3".
|
|
5_3.mo:Expected error in mat random: "random: invalid argument 0".
|
|
***************
|
|
*** 1462,1500 ****
|
|
5_3.mo:Expected error in mat pseudo-random-generator: "vector->pseudo-random-generator!: not a pseudo-random generator 0".
|
|
5_3.mo:Expected error in mat pseudo-random-generator: "vector->pseudo-random-generator!: not a valid pseudo-random generator state vector 0".
|
|
5_3.mo:Expected error in mat pseudo-random-generator: "vector->pseudo-random-generator!: not a valid pseudo-random generator state vector #(0 0 0 0 0 0)".
|
|
! 5_3.mo:Expected error in mat inexact: "incorrect argument count in call (inexact)".
|
|
! 5_3.mo:Expected error in mat inexact: "incorrect argument count in call (inexact 1 2)".
|
|
5_3.mo:Expected error in mat inexact: "inexact: a is not a number".
|
|
! 5_3.mo:Expected error in mat exact: "incorrect argument count in call (exact)".
|
|
! 5_3.mo:Expected error in mat exact: "incorrect argument count in call (exact 1 2)".
|
|
5_3.mo:Expected error in mat exact: "exact: a is not a number".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect argument count in call (rationalize)".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect argument count in call (rationalize 3 4 5)".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect argument count in call (rationalize 3)".
|
|
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
|
|
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
|
|
5_3.mo:Expected error in mat rationalize: "rationalize: 3.4+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat numerator: "incorrect argument count in call (numerator)".
|
|
! 5_3.mo:Expected error in mat numerator: "incorrect argument count in call (numerator 3 4)".
|
|
5_3.mo:Expected error in mat numerator: "numerator: a is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: 0+1i is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: 2.2+1.1i is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: +inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: -inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: +nan.0 is not a rational number".
|
|
! 5_3.mo:Expected error in mat denominator: "incorrect argument count in call (denominator)".
|
|
! 5_3.mo:Expected error in mat denominator: "incorrect argument count in call (denominator 3 4)".
|
|
5_3.mo:Expected error in mat denominator: "denominator: a is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: 0+1i is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: 2.2+1.1i is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: +inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: -inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: +nan.0 is not a rational number".
|
|
! 5_3.mo:Expected error in mat real-part: "incorrect argument count in call (real-part)".
|
|
! 5_3.mo:Expected error in mat real-part: "incorrect argument count in call (real-part 3 4)".
|
|
5_3.mo:Expected error in mat real-part: "real-part: a is not a complex number".
|
|
! 5_3.mo:Expected error in mat imag-part: "incorrect argument count in call (imag-part)".
|
|
! 5_3.mo:Expected error in mat imag-part: "incorrect argument count in call (imag-part 3 4)".
|
|
5_3.mo:Expected error in mat imag-part: "imag-part: a is not a complex number".
|
|
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: a is not a real number".
|
|
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: b is not a real number".
|
|
--- 1462,1500 ----
|
|
5_3.mo:Expected error in mat pseudo-random-generator: "vector->pseudo-random-generator!: not a pseudo-random generator 0".
|
|
5_3.mo:Expected error in mat pseudo-random-generator: "vector->pseudo-random-generator!: not a valid pseudo-random generator state vector 0".
|
|
5_3.mo:Expected error in mat pseudo-random-generator: "vector->pseudo-random-generator!: not a valid pseudo-random generator state vector #(0 0 0 0 0 0)".
|
|
! 5_3.mo:Expected error in mat inexact: "incorrect number of arguments 0 to #<procedure inexact>".
|
|
! 5_3.mo:Expected error in mat inexact: "incorrect number of arguments 2 to #<procedure inexact>".
|
|
5_3.mo:Expected error in mat inexact: "inexact: a is not a number".
|
|
! 5_3.mo:Expected error in mat exact: "incorrect number of arguments 0 to #<procedure exact>".
|
|
! 5_3.mo:Expected error in mat exact: "incorrect number of arguments 2 to #<procedure exact>".
|
|
5_3.mo:Expected error in mat exact: "exact: a is not a number".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments 0 to #<procedure rationalize>".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments 3 to #<procedure rationalize>".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments 1 to #<procedure rationalize>".
|
|
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
|
|
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
|
|
5_3.mo:Expected error in mat rationalize: "rationalize: 3.4+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat numerator: "incorrect number of arguments 0 to #<procedure numerator>".
|
|
! 5_3.mo:Expected error in mat numerator: "incorrect number of arguments 2 to #<procedure numerator>".
|
|
5_3.mo:Expected error in mat numerator: "numerator: a is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: 0+1i is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: 2.2+1.1i is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: +inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: -inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat numerator: "numerator: +nan.0 is not a rational number".
|
|
! 5_3.mo:Expected error in mat denominator: "incorrect number of arguments 0 to #<procedure denominator>".
|
|
! 5_3.mo:Expected error in mat denominator: "incorrect number of arguments 2 to #<procedure denominator>".
|
|
5_3.mo:Expected error in mat denominator: "denominator: a is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: 0+1i is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: 2.2+1.1i is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: +inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: -inf.0 is not a rational number".
|
|
5_3.mo:Expected error in mat denominator: "denominator: +nan.0 is not a rational number".
|
|
! 5_3.mo:Expected error in mat real-part: "incorrect number of arguments 0 to #<procedure real-part>".
|
|
! 5_3.mo:Expected error in mat real-part: "incorrect number of arguments 2 to #<procedure real-part>".
|
|
5_3.mo:Expected error in mat real-part: "real-part: a is not a complex number".
|
|
! 5_3.mo:Expected error in mat imag-part: "incorrect number of arguments 0 to #<procedure imag-part>".
|
|
! 5_3.mo:Expected error in mat imag-part: "incorrect number of arguments 2 to #<procedure imag-part>".
|
|
5_3.mo:Expected error in mat imag-part: "imag-part: a is not a complex number".
|
|
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: a is not a real number".
|
|
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: b is not a real number".
|
|
***************
|
|
*** 1504,1580 ****
|
|
5_3.mo:Expected error in mat make-polar: "make-polar: b is not a real number".
|
|
5_3.mo:Expected error in mat make-polar: "make-polar: 3.4+0.0i is not a real number".
|
|
5_3.mo:Expected error in mat make-polar: "make-polar: 3.4+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat angle: "incorrect argument count in call (angle)".
|
|
! 5_3.mo:Expected error in mat angle: "incorrect argument count in call (angle 3 4)".
|
|
5_3.mo:Expected error in mat angle: "angle: a is not a complex number".
|
|
! 5_3.mo:Expected error in mat sqrt: "incorrect argument count in call (sqrt)".
|
|
! 5_3.mo:Expected error in mat sqrt: "incorrect argument count in call (sqrt 3 4)".
|
|
5_3.mo:Expected error in mat sqrt: "sqrt: a is not a number".
|
|
! 5_3.mo:Expected error in mat isqrt: "incorrect argument count in call (isqrt)".
|
|
! 5_3.mo:Expected error in mat isqrt: "incorrect argument count in call (isqrt 3 4)".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: 1.1 is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: a is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: -1 is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: 10.0+0.0i is not a nonnegative integer".
|
|
! 5_3.mo:Expected error in mat exp: "incorrect argument count in call (exp)".
|
|
! 5_3.mo:Expected error in mat exp: "incorrect argument count in call (exp 3 4)".
|
|
5_3.mo:Expected error in mat exp: "exp: a is not a number".
|
|
! 5_3.mo:Expected error in mat log: "incorrect argument count in call (log)".
|
|
5_3.mo:Expected error in mat log: "log: a is not a number".
|
|
5_3.mo:Expected error in mat log: "log: undefined for 0".
|
|
! 5_3.mo:Expected error in mat sin: "incorrect argument count in call (sin)".
|
|
! 5_3.mo:Expected error in mat sin: "incorrect argument count in call (sin 3 4)".
|
|
5_3.mo:Expected error in mat sin: "sin: a is not a number".
|
|
! 5_3.mo:Expected error in mat cos: "incorrect argument count in call (cos)".
|
|
! 5_3.mo:Expected error in mat cos: "incorrect argument count in call (cos 3 4)".
|
|
5_3.mo:Expected error in mat cos: "cos: a is not a number".
|
|
! 5_3.mo:Expected error in mat tan: "incorrect argument count in call (tan)".
|
|
! 5_3.mo:Expected error in mat tan: "incorrect argument count in call (tan 3 4)".
|
|
5_3.mo:Expected error in mat tan: "tan: a is not a number".
|
|
! 5_3.mo:Expected error in mat asin: "incorrect argument count in call (asin)".
|
|
! 5_3.mo:Expected error in mat asin: "incorrect argument count in call (asin 3 4)".
|
|
5_3.mo:Expected error in mat asin: "asin: a is not a number".
|
|
! 5_3.mo:Expected error in mat acos: "incorrect argument count in call (acos)".
|
|
! 5_3.mo:Expected error in mat acos: "incorrect argument count in call (acos 3 4)".
|
|
5_3.mo:Expected error in mat acos: "acos: a is not a number".
|
|
! 5_3.mo:Expected error in mat atan: "incorrect argument count in call (atan)".
|
|
! 5_3.mo:Expected error in mat atan: "incorrect argument count in call (atan 3 4 5)".
|
|
5_3.mo:Expected error in mat atan: "atan: a is not a number".
|
|
5_3.mo:Expected error in mat atan: "atan: a is not a real number".
|
|
5_3.mo:Expected error in mat atan: "atan: a is not a real number".
|
|
5_3.mo:Expected error in mat atan: "atan: undefined for 0+1i".
|
|
5_3.mo:Expected error in mat atan: "atan: undefined for 0-1i".
|
|
5_3.mo:Expected error in mat atan: "atan: 3.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat asinh: "incorrect argument count in call (asinh)".
|
|
! 5_3.mo:Expected error in mat asinh: "incorrect argument count in call (asinh 3 4)".
|
|
5_3.mo:Expected error in mat asinh: "asinh: a is not a number".
|
|
! 5_3.mo:Expected error in mat acosh: "incorrect argument count in call (acosh)".
|
|
! 5_3.mo:Expected error in mat acosh: "incorrect argument count in call (acosh 3 4)".
|
|
5_3.mo:Expected error in mat acosh: "acosh: a is not a number".
|
|
! 5_3.mo:Expected error in mat atanh: "incorrect argument count in call (atanh)".
|
|
! 5_3.mo:Expected error in mat atanh: "incorrect argument count in call (atanh 3 4)".
|
|
5_3.mo:Expected error in mat atanh: "atanh: a is not a number".
|
|
5_3.mo:Expected error in mat atanh: "atan: undefined for -1".
|
|
5_3.mo:Expected error in mat atanh: "atan: undefined for 1".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect argument count in call (ash)".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect argument count in call (ash 1)".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect argument count in call (ash 1 1 1)".
|
|
5_3.mo:Expected error in mat ash: "ash: 0.1 is not an exact integer".
|
|
5_3.mo:Expected error in mat ash: "ash: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect argument count in call (bitwise-arithmetic-shift)".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect argument count in call (bitwise-arithmetic-shift 1)".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect argument count in call (bitwise-arithmetic-shift 1 1 1)".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift: "bitwise-arithmetic-shift: 0.1 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift: "bitwise-arithmetic-shift: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect argument count in call (bitwise-arithmetic-shift-left)".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect argument count in call (bitwise-arithmetic-shift-left 1)".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect argument count in call (bitwise-arithmetic-shift-left 1 1 1)".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "bitwise-arithmetic-shift-left: 0.1 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "bitwise-arithmetic-shift-left: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-bit-field)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-bit-field 35)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-bit-field 35 5)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-bit-field 35 5 8 15)".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: 35.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid start index 5.0".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index 8.0".
|
|
--- 1504,1580 ----
|
|
5_3.mo:Expected error in mat make-polar: "make-polar: b is not a real number".
|
|
5_3.mo:Expected error in mat make-polar: "make-polar: 3.4+0.0i is not a real number".
|
|
5_3.mo:Expected error in mat make-polar: "make-polar: 3.4+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat angle: "incorrect number of arguments 0 to #<procedure angle>".
|
|
! 5_3.mo:Expected error in mat angle: "incorrect number of arguments 2 to #<procedure angle>".
|
|
5_3.mo:Expected error in mat angle: "angle: a is not a complex number".
|
|
! 5_3.mo:Expected error in mat sqrt: "incorrect number of arguments 0 to #<procedure sqrt>".
|
|
! 5_3.mo:Expected error in mat sqrt: "incorrect number of arguments 2 to #<procedure sqrt>".
|
|
5_3.mo:Expected error in mat sqrt: "sqrt: a is not a number".
|
|
! 5_3.mo:Expected error in mat isqrt: "incorrect number of arguments 0 to #<procedure isqrt>".
|
|
! 5_3.mo:Expected error in mat isqrt: "incorrect number of arguments 2 to #<procedure isqrt>".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: 1.1 is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: a is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: -1 is not a nonnegative integer".
|
|
5_3.mo:Expected error in mat isqrt: "isqrt: 10.0+0.0i is not a nonnegative integer".
|
|
! 5_3.mo:Expected error in mat exp: "incorrect number of arguments 0 to #<procedure exp>".
|
|
! 5_3.mo:Expected error in mat exp: "incorrect number of arguments 2 to #<procedure exp>".
|
|
5_3.mo:Expected error in mat exp: "exp: a is not a number".
|
|
! 5_3.mo:Expected error in mat log: "incorrect number of arguments 0 to #<procedure log>".
|
|
5_3.mo:Expected error in mat log: "log: a is not a number".
|
|
5_3.mo:Expected error in mat log: "log: undefined for 0".
|
|
! 5_3.mo:Expected error in mat sin: "incorrect number of arguments 0 to #<procedure sin>".
|
|
! 5_3.mo:Expected error in mat sin: "incorrect number of arguments 2 to #<procedure sin>".
|
|
5_3.mo:Expected error in mat sin: "sin: a is not a number".
|
|
! 5_3.mo:Expected error in mat cos: "incorrect number of arguments 0 to #<procedure cos>".
|
|
! 5_3.mo:Expected error in mat cos: "incorrect number of arguments 2 to #<procedure cos>".
|
|
5_3.mo:Expected error in mat cos: "cos: a is not a number".
|
|
! 5_3.mo:Expected error in mat tan: "incorrect number of arguments 0 to #<procedure tan>".
|
|
! 5_3.mo:Expected error in mat tan: "incorrect number of arguments 2 to #<procedure tan>".
|
|
5_3.mo:Expected error in mat tan: "tan: a is not a number".
|
|
! 5_3.mo:Expected error in mat asin: "incorrect number of arguments 0 to #<procedure asin>".
|
|
! 5_3.mo:Expected error in mat asin: "incorrect number of arguments 2 to #<procedure asin>".
|
|
5_3.mo:Expected error in mat asin: "asin: a is not a number".
|
|
! 5_3.mo:Expected error in mat acos: "incorrect number of arguments 0 to #<procedure acos>".
|
|
! 5_3.mo:Expected error in mat acos: "incorrect number of arguments 2 to #<procedure acos>".
|
|
5_3.mo:Expected error in mat acos: "acos: a is not a number".
|
|
! 5_3.mo:Expected error in mat atan: "incorrect number of arguments 0 to #<procedure atan>".
|
|
! 5_3.mo:Expected error in mat atan: "incorrect number of arguments 3 to #<procedure atan>".
|
|
5_3.mo:Expected error in mat atan: "atan: a is not a number".
|
|
5_3.mo:Expected error in mat atan: "atan: a is not a real number".
|
|
5_3.mo:Expected error in mat atan: "atan: a is not a real number".
|
|
5_3.mo:Expected error in mat atan: "atan: undefined for 0+1i".
|
|
5_3.mo:Expected error in mat atan: "atan: undefined for 0-1i".
|
|
5_3.mo:Expected error in mat atan: "atan: 3.0+0.0i is not a real number".
|
|
! 5_3.mo:Expected error in mat asinh: "incorrect number of arguments 0 to #<procedure asinh>".
|
|
! 5_3.mo:Expected error in mat asinh: "incorrect number of arguments 2 to #<procedure asinh>".
|
|
5_3.mo:Expected error in mat asinh: "asinh: a is not a number".
|
|
! 5_3.mo:Expected error in mat acosh: "incorrect number of arguments 0 to #<procedure acosh>".
|
|
! 5_3.mo:Expected error in mat acosh: "incorrect number of arguments 2 to #<procedure acosh>".
|
|
5_3.mo:Expected error in mat acosh: "acosh: a is not a number".
|
|
! 5_3.mo:Expected error in mat atanh: "incorrect number of arguments 0 to #<procedure atanh>".
|
|
! 5_3.mo:Expected error in mat atanh: "incorrect number of arguments 2 to #<procedure atanh>".
|
|
5_3.mo:Expected error in mat atanh: "atanh: a is not a number".
|
|
5_3.mo:Expected error in mat atanh: "atan: undefined for -1".
|
|
5_3.mo:Expected error in mat atanh: "atan: undefined for 1".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect number of arguments 0 to #<procedure ash>".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect number of arguments 1 to #<procedure ash>".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect number of arguments 3 to #<procedure ash>".
|
|
5_3.mo:Expected error in mat ash: "ash: 0.1 is not an exact integer".
|
|
5_3.mo:Expected error in mat ash: "ash: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect number of arguments 0 to #<procedure bitwise-arithmetic-shift>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect number of arguments 1 to #<procedure bitwise-arithmetic-shift>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect number of arguments 3 to #<procedure bitwise-arithmetic-shift>".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift: "bitwise-arithmetic-shift: 0.1 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift: "bitwise-arithmetic-shift: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect number of arguments 0 to #<procedure bitwise-arithmetic-shift-left>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect number of arguments 1 to #<procedure bitwise-arithmetic-shift-left>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect number of arguments 3 to #<procedure bitwise-arithmetic-shift-left>".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "bitwise-arithmetic-shift-left: 0.1 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "bitwise-arithmetic-shift-left: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 0 to #<procedure bitwise-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 1 to #<procedure bitwise-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 2 to #<procedure bitwise-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 4 to #<procedure bitwise-bit-field>".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: 35.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid start index 5.0".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index 8.0".
|
|
***************
|
|
*** 1585,1595 ****
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index -8".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index 3".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index <int>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect argument count in call (bitwise-copy-bit-field)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect argument count in call (bitwise-copy-bit-field 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect argument count in call (bitwise-copy-bit-field 0 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect argument count in call (bitwise-copy-bit-field 0 0 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect argument count in call (bitwise-copy-bit-field 0 0 0 0 0)".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid start index 0.0".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index 2.0".
|
|
--- 1585,1595 ----
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index -8".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index 3".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-bit-field: invalid end index <int>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments 0 to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments 1 to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments 2 to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments 3 to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments 5 to #<procedure bitwise-copy-bit-field>".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid start index 0.0".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index 2.0".
|
|
***************
|
|
*** 1602,1612 ****
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index 5".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index <int>".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index <int>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect argument count in call (bitwise-rotate-bit-field)".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect argument count in call (bitwise-rotate-bit-field 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect argument count in call (bitwise-rotate-bit-field 0 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect argument count in call (bitwise-rotate-bit-field 0 0 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect argument count in call (bitwise-rotate-bit-field 0 0 0 0 0)".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid start index 0.0".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index 2.0".
|
|
--- 1602,1612 ----
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index 5".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index <int>".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit-field: "bitwise-copy-bit-field: invalid end index <int>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments 0 to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments 1 to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments 2 to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments 3 to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments 5 to #<procedure bitwise-rotate-bit-field>".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid start index 0.0".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index 2.0".
|
|
***************
|
|
*** 1620,1629 ****
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index 5".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index <int>".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index <int>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-reverse-bit-field)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-reverse-bit-field 35)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-reverse-bit-field 35 5)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect argument count in call (bitwise-reverse-bit-field 35 5 8 15)".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: 35.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: invalid start index 5.0".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: invalid end index 8.0".
|
|
--- 1620,1629 ----
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index 5".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index <int>".
|
|
5_3.mo:Expected error in mat bitwise-rotate-bit-field: "bitwise-rotate-bit-field: invalid end index <int>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 0 to #<procedure bitwise-reverse-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 1 to #<procedure bitwise-reverse-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 2 to #<procedure bitwise-reverse-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 4 to #<procedure bitwise-reverse-bit-field>".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: 35.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: invalid start index 5.0".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: invalid end index 8.0".
|
|
***************
|
|
*** 1634,1657 ****
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: invalid end index -8".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: start index 5 is greater than end index 3".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: start index <int> is greater than end index <int>".
|
|
! 5_3.mo:Expected error in mat exact-integer-sqrt: "incorrect argument count in call (exact-integer-sqrt)".
|
|
! 5_3.mo:Expected error in mat exact-integer-sqrt: "incorrect argument count in call (exact-integer-sqrt 3 4)".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: 1.0 is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: a is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: -1 is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: 10.0+0.0i is not a nonnegative exact integer".
|
|
! 5_3.mo:Expected error in mat integer-length: "incorrect argument count in call (integer-length)".
|
|
! 5_3.mo:Expected error in mat integer-length: "incorrect argument count in call (integer-length 1 1 1)".
|
|
5_3.mo:Expected error in mat integer-length: "integer-length: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-length: "incorrect argument count in call (bitwise-length)".
|
|
! 5_3.mo:Expected error in mat bitwise-length: "incorrect argument count in call (bitwise-length 1 1 1)".
|
|
5_3.mo:Expected error in mat bitwise-length: "bitwise-length: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-count: "incorrect argument count in call (bitwise-bit-count)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-count: "incorrect argument count in call (bitwise-bit-count 75 32)".
|
|
5_3.mo:Expected error in mat bitwise-bit-count: "bitwise-bit-count: 3.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-count: "bitwise-bit-count: a is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-first-bit-set: "incorrect argument count in call (bitwise-first-bit-set)".
|
|
! 5_3.mo:Expected error in mat bitwise-first-bit-set: "incorrect argument count in call (bitwise-first-bit-set 75 32)".
|
|
5_3.mo:Expected error in mat bitwise-first-bit-set: "bitwise-first-bit-set: 3.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-first-bit-set: "bitwise-first-bit-set: a is not an exact integer".
|
|
5_3.mo:Expected error in mat $quotient-remainder: "incorrect number of arguments 0 to #<procedure $quotient-remainder>".
|
|
--- 1634,1657 ----
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: invalid end index -8".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: start index 5 is greater than end index 3".
|
|
5_3.mo:Expected error in mat bitwise-bit-field: "bitwise-reverse-bit-field: start index <int> is greater than end index <int>".
|
|
! 5_3.mo:Expected error in mat exact-integer-sqrt: "incorrect number of arguments 0 to #<procedure exact-integer-sqrt>".
|
|
! 5_3.mo:Expected error in mat exact-integer-sqrt: "incorrect number of arguments 2 to #<procedure exact-integer-sqrt>".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: 1.0 is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: a is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: -1 is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat exact-integer-sqrt: "exact-integer-sqrt: 10.0+0.0i is not a nonnegative exact integer".
|
|
! 5_3.mo:Expected error in mat integer-length: "incorrect number of arguments 0 to #<procedure integer-length>".
|
|
! 5_3.mo:Expected error in mat integer-length: "incorrect number of arguments 3 to #<procedure integer-length>".
|
|
5_3.mo:Expected error in mat integer-length: "integer-length: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-length: "incorrect number of arguments 0 to #<procedure bitwise-length>".
|
|
! 5_3.mo:Expected error in mat bitwise-length: "incorrect number of arguments 3 to #<procedure bitwise-length>".
|
|
5_3.mo:Expected error in mat bitwise-length: "bitwise-length: 0.1 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-count: "incorrect number of arguments 0 to #<procedure bitwise-bit-count>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-count: "incorrect number of arguments 2 to #<procedure bitwise-bit-count>".
|
|
5_3.mo:Expected error in mat bitwise-bit-count: "bitwise-bit-count: 3.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-count: "bitwise-bit-count: a is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-first-bit-set: "incorrect number of arguments 0 to #<procedure bitwise-first-bit-set>".
|
|
! 5_3.mo:Expected error in mat bitwise-first-bit-set: "incorrect number of arguments 2 to #<procedure bitwise-first-bit-set>".
|
|
5_3.mo:Expected error in mat bitwise-first-bit-set: "bitwise-first-bit-set: 3.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-first-bit-set: "bitwise-first-bit-set: a is not an exact integer".
|
|
5_3.mo:Expected error in mat $quotient-remainder: "incorrect number of arguments 0 to #<procedure $quotient-remainder>".
|
|
***************
|
|
*** 1777,1832 ****
|
|
5_3.mo:Expected error in mat bitwise-xor: "bitwise-xor: 3.4-2.3i is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-xor: "bitwise-xor: 3.4-2.3i is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-xor: "bitwise-xor: 3.0 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect argument count in call (logtest)".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect argument count in call (logtest 1)".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect argument count in call (logtest 1 2 3)".
|
|
5_3.mo:Expected error in mat logtest: "logtest: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logtest: "logtest: "3" is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect argument count in call (bitwise-if)".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect argument count in call (bitwise-if 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect argument count in call (bitwise-if 0 0)".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect argument count in call (bitwise-if 0 0 0 0)".
|
|
5_3.mo:Expected error in mat bitwise-if: "bitwise-if: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-if: "bitwise-if: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-if: "bitwise-if: (a) is not an exact integer".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect argument count in call (logbit?)".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect argument count in call (logbit? 1)".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect argument count in call (logbit? 1 2 3)".
|
|
5_3.mo:Expected error in mat logbit?: "logbit?: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit?: "logbit?: "3" is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit?: "logbit?: invalid bit index -1".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect argument count in call (bitwise-bit-set?)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect argument count in call (bitwise-bit-set? 3)".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect argument count in call (bitwise-bit-set? 3 4 5)".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: 3.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: "hi" is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: 4/3 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: invalid bit index -3".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect argument count in call (logbit0)".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect argument count in call (logbit0 1)".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect argument count in call (logbit0 1 2 3)".
|
|
5_3.mo:Expected error in mat logbit0: "logbit0: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit0: "logbit0: "3" is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit0: "logbit0: invalid bit index -1".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect argument count in call (logbit1)".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect argument count in call (logbit1 1)".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect argument count in call (logbit1 1 2 3)".
|
|
5_3.mo:Expected error in mat logbit1: "logbit1: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit1: "logbit1: "3" is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit1: "logbit1: invalid bit index -1".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect argument count in call (bitwise-copy-bit)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect argument count in call (bitwise-copy-bit 1)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect argument count in call (bitwise-copy-bit 1 2)".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect argument count in call (bitwise-copy-bit 1 2 0 4)".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: a is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: -2 is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: bit argument 2 is not 0 or 1".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: bit argument -1 is not 0 or 1".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: bit argument a is not 0 or 1".
|
|
! 5_3.mo:Expected error in mat real->flonum: "incorrect argument count in call (real->flonum)".
|
|
! 5_3.mo:Expected error in mat real->flonum: "incorrect argument count in call (real->flonum 3 4)".
|
|
5_3.mo:Expected error in mat real->flonum: "real->flonum: a is not a real number".
|
|
5_3.mo:Expected error in mat real->flonum: "real->flonum: 3+4i is not a real number".
|
|
5_3.mo:Expected error in mat div-and-mod: "div-and-mod: undefined for 0".
|
|
--- 1777,1832 ----
|
|
5_3.mo:Expected error in mat bitwise-xor: "bitwise-xor: 3.4-2.3i is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-xor: "bitwise-xor: 3.4-2.3i is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-xor: "bitwise-xor: 3.0 is not an exact integer".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect number of arguments 0 to #<procedure logtest>".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect number of arguments 1 to #<procedure logtest>".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect number of arguments 3 to #<procedure logtest>".
|
|
5_3.mo:Expected error in mat logtest: "logtest: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logtest: "logtest: "3" is not an exact integer".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments 0 to #<procedure bitwise-if>".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments 1 to #<procedure bitwise-if>".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments 2 to #<procedure bitwise-if>".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments 4 to #<procedure bitwise-if>".
|
|
5_3.mo:Expected error in mat bitwise-if: "bitwise-if: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-if: "bitwise-if: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-if: "bitwise-if: (a) is not an exact integer".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect number of arguments 0 to #<procedure logbit?>".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect number of arguments 1 to #<procedure logbit?>".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect number of arguments 3 to #<procedure logbit?>".
|
|
5_3.mo:Expected error in mat logbit?: "logbit?: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit?: "logbit?: "3" is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit?: "logbit?: invalid bit index -1".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect number of arguments 0 to #<procedure bitwise-bit-set?>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect number of arguments 1 to #<procedure bitwise-bit-set?>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect number of arguments 3 to #<procedure bitwise-bit-set?>".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: 3.0 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: "hi" is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: 4/3 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: a is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-bit-set?: "bitwise-bit-set?: invalid bit index -3".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect number of arguments 0 to #<procedure logbit0>".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect number of arguments 1 to #<procedure logbit0>".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect number of arguments 3 to #<procedure logbit0>".
|
|
5_3.mo:Expected error in mat logbit0: "logbit0: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit0: "logbit0: "3" is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit0: "logbit0: invalid bit index -1".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect number of arguments 0 to #<procedure logbit1>".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect number of arguments 1 to #<procedure logbit1>".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect number of arguments 3 to #<procedure logbit1>".
|
|
5_3.mo:Expected error in mat logbit1: "logbit1: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit1: "logbit1: "3" is not an exact integer".
|
|
5_3.mo:Expected error in mat logbit1: "logbit1: invalid bit index -1".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments 0 to #<procedure bitwise-copy-bit>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments 1 to #<procedure bitwise-copy-bit>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments 2 to #<procedure bitwise-copy-bit>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments 4 to #<procedure bitwise-copy-bit>".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: 3.4 is not an exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: a is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: -2 is not a nonnegative exact integer".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: bit argument 2 is not 0 or 1".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: bit argument -1 is not 0 or 1".
|
|
5_3.mo:Expected error in mat bitwise-copy-bit: "bitwise-copy-bit: bit argument a is not 0 or 1".
|
|
! 5_3.mo:Expected error in mat real->flonum: "incorrect number of arguments 0 to #<procedure real->flonum>".
|
|
! 5_3.mo:Expected error in mat real->flonum: "incorrect number of arguments 2 to #<procedure real->flonum>".
|
|
5_3.mo:Expected error in mat real->flonum: "real->flonum: a is not a real number".
|
|
5_3.mo:Expected error in mat real->flonum: "real->flonum: 3+4i is not a real number".
|
|
5_3.mo:Expected error in mat div-and-mod: "div-and-mod: undefined for 0".
|
|
***************
|
|
*** 1951,2111 ****
|
|
5_3.mo:Expected error in mat popcount: "fxpopcount16: 1267650600228229401496703205376 is not a 16-bit fixnum".
|
|
5_3.mo:Expected error in mat popcount: "fxpopcount16: 1048576 is not a 16-bit fixnum".
|
|
5_3.mo:Expected error in mat popcount: "fxpopcount16: -1 is not a 16-bit fixnum".
|
|
! 5_4.mo:Expected error in mat char=?/char-ci=?: "incorrect argument count in call (char=?)".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char=?/char-ci=?: "incorrect argument count in call (char-ci=?)".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<?/char-ci<?: "incorrect argument count in call (char<?)".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<?/char-ci<?: "incorrect argument count in call (char-ci<?)".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>?/char-ci>?: "incorrect argument count in call (char>?)".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>?/char-ci>?: "incorrect argument count in call (char-ci>?)".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<=?/char-ci<=?: "incorrect argument count in call (char<=?)".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<=?/char-ci<=?: "incorrect argument count in call (char-ci<=?)".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>=?/char-ci>=?: "incorrect argument count in call (char>=?)".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>=?/char-ci>=?: "incorrect argument count in call (char-ci>=?)".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect argument count in call (char=?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect argument count in call (char=? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect argument count in call (char-ci=?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect argument count in call (char-ci=? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect argument count in call (char<?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect argument count in call (char<? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect argument count in call (char-ci<?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect argument count in call (char-ci<? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect argument count in call (char>?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect argument count in call (char>? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect argument count in call (char-ci>?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect argument count in call (char-ci>? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect argument count in call (char<=?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect argument count in call (char<=? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect argument count in call (char-ci<=?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect argument count in call (char-ci<=? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect argument count in call (char>=?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect argument count in call (char>=? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect argument count in call (char-ci>=?)".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect argument count in call (char-ci>=? (quote a))".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-alphabetic?: "incorrect argument count in call (char-alphabetic?)".
|
|
! 5_4.mo:Expected error in mat char-alphabetic?: "incorrect argument count in call (char-alphabetic? #\a #\b)".
|
|
5_4.mo:Expected error in mat char-alphabetic?: "char-alphabetic?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-numeric?: "incorrect argument count in call (char-numeric?)".
|
|
! 5_4.mo:Expected error in mat char-numeric?: "incorrect argument count in call (char-numeric? #\a #\b)".
|
|
5_4.mo:Expected error in mat char-numeric?: "char-numeric?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-lower-case?: "incorrect argument count in call (char-lower-case?)".
|
|
! 5_4.mo:Expected error in mat char-lower-case?: "incorrect argument count in call (char-lower-case? #\a #\b)".
|
|
5_4.mo:Expected error in mat char-lower-case?: "char-lower-case?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-upper-case?: "incorrect argument count in call (char-upper-case?)".
|
|
! 5_4.mo:Expected error in mat char-upper-case?: "incorrect argument count in call (char-upper-case? #\a #\b)".
|
|
5_4.mo:Expected error in mat char-upper-case?: "char-upper-case?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-title-case?: "incorrect argument count in call (char-title-case?)".
|
|
! 5_4.mo:Expected error in mat char-title-case?: "incorrect argument count in call (char-title-case? #\a #\b)".
|
|
5_4.mo:Expected error in mat char-title-case?: "char-title-case?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-general-category: "incorrect argument count in call (char-general-category)".
|
|
! 5_4.mo:Expected error in mat char-general-category: "incorrect argument count in call (char-general-category #\a #\b)".
|
|
5_4.mo:Expected error in mat char-general-category: "char-general-category: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-whitespace?: "incorrect argument count in call (char-whitespace?)".
|
|
! 5_4.mo:Expected error in mat char-whitespace?: "incorrect argument count in call (char-whitespace? #\a #\b)".
|
|
5_4.mo:Expected error in mat char-whitespace?: "char-whitespace?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-upcase: "incorrect argument count in call (char-upcase)".
|
|
! 5_4.mo:Expected error in mat char-upcase: "incorrect argument count in call (char-upcase #\a #\b)".
|
|
5_4.mo:Expected error in mat char-upcase: "char-upcase: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-titlecase: "incorrect argument count in call (char-titlecase)".
|
|
! 5_4.mo:Expected error in mat char-titlecase: "incorrect argument count in call (char-titlecase #\a #\b)".
|
|
5_4.mo:Expected error in mat char-titlecase: "char-titlecase: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-downcase: "incorrect argument count in call (char-downcase)".
|
|
! 5_4.mo:Expected error in mat char-downcase: "incorrect argument count in call (char-downcase #\a #\b)".
|
|
5_4.mo:Expected error in mat char-downcase: "char-downcase: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-foldcase: "incorrect argument count in call (char-foldcase)".
|
|
! 5_4.mo:Expected error in mat char-foldcase: "incorrect argument count in call (char-foldcase #\a #\b)".
|
|
5_4.mo:Expected error in mat char-foldcase: "char-foldcase: a is not a character".
|
|
! 5_4.mo:Expected error in mat integer->char: "incorrect argument count in call (integer->char)".
|
|
! 5_4.mo:Expected error in mat integer->char: "incorrect argument count in call (integer->char 17 3)".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: a is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: #f is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: #\a is not a valid unicode scalar value".
|
|
--- 1951,2111 ----
|
|
5_3.mo:Expected error in mat popcount: "fxpopcount16: 1267650600228229401496703205376 is not a 16-bit fixnum".
|
|
5_3.mo:Expected error in mat popcount: "fxpopcount16: 1048576 is not a 16-bit fixnum".
|
|
5_3.mo:Expected error in mat popcount: "fxpopcount16: -1 is not a 16-bit fixnum".
|
|
! 5_4.mo:Expected error in mat char=?/char-ci=?: "incorrect number of arguments 0 to #<procedure char=?>".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char=?/char-ci=?: "incorrect number of arguments 0 to #<procedure char-ci=?>".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat char=?/char-ci=?: "char-ci=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<?/char-ci<?: "incorrect number of arguments 0 to #<procedure char<?>".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<?/char-ci<?: "incorrect number of arguments 0 to #<procedure char-ci<?>".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat char<?/char-ci<?: "char-ci<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>?/char-ci>?: "incorrect number of arguments 0 to #<procedure char>?>".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>?/char-ci>?: "incorrect number of arguments 0 to #<procedure char-ci>?>".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat char>?/char-ci>?: "char-ci>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<=?/char-ci<=?: "incorrect number of arguments 0 to #<procedure char<=?>".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char<=?/char-ci<=?: "incorrect number of arguments 0 to #<procedure char-ci<=?>".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat char<=?/char-ci<=?: "char-ci<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>=?/char-ci>=?: "incorrect number of arguments 0 to #<procedure char>=?>".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char>=?/char-ci>=?: "incorrect number of arguments 0 to #<procedure char-ci>=?>".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat char>=?/char-ci>=?: "char-ci>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect number of arguments 0 to #<procedure char=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect number of arguments 1 to #<procedure char=?>".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect number of arguments 0 to #<procedure char-ci=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect number of arguments 1 to #<procedure char-ci=?>".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "char-ci=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect number of arguments 0 to #<procedure char<?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect number of arguments 1 to #<procedure char<?>".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect number of arguments 0 to #<procedure char-ci<?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect number of arguments 1 to #<procedure char-ci<?>".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "char-ci<?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect number of arguments 0 to #<procedure char>?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect number of arguments 1 to #<procedure char>?>".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect number of arguments 0 to #<procedure char-ci>?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect number of arguments 1 to #<procedure char-ci>?>".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "char-ci>?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect number of arguments 0 to #<procedure char<=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect number of arguments 1 to #<procedure char<=?>".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect number of arguments 0 to #<procedure char-ci<=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect number of arguments 1 to #<procedure char-ci<=?>".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "char-ci<=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect number of arguments 0 to #<procedure char>=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect number of arguments 1 to #<procedure char>=?>".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect number of arguments 0 to #<procedure char-ci>=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect number of arguments 1 to #<procedure char-ci>=?>".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "char-ci>=?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-alphabetic?: "incorrect number of arguments 0 to #<procedure char-alphabetic?>".
|
|
! 5_4.mo:Expected error in mat char-alphabetic?: "incorrect number of arguments 2 to #<procedure char-alphabetic?>".
|
|
5_4.mo:Expected error in mat char-alphabetic?: "char-alphabetic?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-numeric?: "incorrect number of arguments 0 to #<procedure char-numeric?>".
|
|
! 5_4.mo:Expected error in mat char-numeric?: "incorrect number of arguments 2 to #<procedure char-numeric?>".
|
|
5_4.mo:Expected error in mat char-numeric?: "char-numeric?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-lower-case?: "incorrect number of arguments 0 to #<procedure char-lower-case?>".
|
|
! 5_4.mo:Expected error in mat char-lower-case?: "incorrect number of arguments 2 to #<procedure char-lower-case?>".
|
|
5_4.mo:Expected error in mat char-lower-case?: "char-lower-case?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-upper-case?: "incorrect number of arguments 0 to #<procedure char-upper-case?>".
|
|
! 5_4.mo:Expected error in mat char-upper-case?: "incorrect number of arguments 2 to #<procedure char-upper-case?>".
|
|
5_4.mo:Expected error in mat char-upper-case?: "char-upper-case?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-title-case?: "incorrect number of arguments 0 to #<procedure char-title-case?>".
|
|
! 5_4.mo:Expected error in mat char-title-case?: "incorrect number of arguments 2 to #<procedure char-title-case?>".
|
|
5_4.mo:Expected error in mat char-title-case?: "char-title-case?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-general-category: "incorrect number of arguments 0 to #<procedure char-general-category>".
|
|
! 5_4.mo:Expected error in mat char-general-category: "incorrect number of arguments 2 to #<procedure char-general-category>".
|
|
5_4.mo:Expected error in mat char-general-category: "char-general-category: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-whitespace?: "incorrect number of arguments 0 to #<procedure char-whitespace?>".
|
|
! 5_4.mo:Expected error in mat char-whitespace?: "incorrect number of arguments 2 to #<procedure char-whitespace?>".
|
|
5_4.mo:Expected error in mat char-whitespace?: "char-whitespace?: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-upcase: "incorrect number of arguments 0 to #<procedure char-upcase>".
|
|
! 5_4.mo:Expected error in mat char-upcase: "incorrect number of arguments 2 to #<procedure char-upcase>".
|
|
5_4.mo:Expected error in mat char-upcase: "char-upcase: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-titlecase: "incorrect number of arguments 0 to #<procedure char-titlecase>".
|
|
! 5_4.mo:Expected error in mat char-titlecase: "incorrect number of arguments 2 to #<procedure char-titlecase>".
|
|
5_4.mo:Expected error in mat char-titlecase: "char-titlecase: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-downcase: "incorrect number of arguments 0 to #<procedure char-downcase>".
|
|
! 5_4.mo:Expected error in mat char-downcase: "incorrect number of arguments 2 to #<procedure char-downcase>".
|
|
5_4.mo:Expected error in mat char-downcase: "char-downcase: a is not a character".
|
|
! 5_4.mo:Expected error in mat char-foldcase: "incorrect number of arguments 0 to #<procedure char-foldcase>".
|
|
! 5_4.mo:Expected error in mat char-foldcase: "incorrect number of arguments 2 to #<procedure char-foldcase>".
|
|
5_4.mo:Expected error in mat char-foldcase: "char-foldcase: a is not a character".
|
|
! 5_4.mo:Expected error in mat integer->char: "incorrect number of arguments 0 to #<procedure integer->char>".
|
|
! 5_4.mo:Expected error in mat integer->char: "incorrect number of arguments 2 to #<procedure integer->char>".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: a is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: #f is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: #\a is not a valid unicode scalar value".
|
|
***************
|
|
*** 2124,2136 ****
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: 1114112 is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: 1179648 is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: <int> is not a valid unicode scalar value".
|
|
! 5_4.mo:Expected error in mat char->integer: "incorrect argument count in call (char->integer)".
|
|
! 5_4.mo:Expected error in mat char->integer: "incorrect argument count in call (char->integer #\a #\b)".
|
|
5_4.mo:Expected error in mat char->integer: "char->integer: a is not a character".
|
|
5_4.mo:Expected error in mat char->integer: "char->integer: <int> is not a character".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect argument count in call (string-for-each)".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect argument count in call (string-for-each (quote #()))".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect argument count in call (string-for-each +)".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: "" is not a procedure".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: "" is not a procedure".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: "" is not a procedure".
|
|
--- 2124,2136 ----
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: 1114112 is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: 1179648 is not a valid unicode scalar value".
|
|
5_4.mo:Expected error in mat integer->char: "integer->char: <int> is not a valid unicode scalar value".
|
|
! 5_4.mo:Expected error in mat char->integer: "incorrect number of arguments 0 to #<procedure char->integer>".
|
|
! 5_4.mo:Expected error in mat char->integer: "incorrect number of arguments 2 to #<procedure char->integer>".
|
|
5_4.mo:Expected error in mat char->integer: "char->integer: a is not a character".
|
|
5_4.mo:Expected error in mat char->integer: "char->integer: <int> is not a character".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect number of arguments 0 to #<procedure string-for-each>".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect number of arguments 1 to #<procedure string-for-each>".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect number of arguments 1 to #<procedure string-for-each>".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: "" is not a procedure".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: "" is not a procedure".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: "" is not a procedure".
|
|
***************
|
|
*** 2145,2290 ****
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: lengths of input string "" and "x" differ".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: lengths of input string "y" and "" differ".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: lengths of input string "y" and "" differ".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-upcase)".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-upcase "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-upcase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-downcase)".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-downcase "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-downcase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-titlecase)".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-titlecase "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-titlecase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-foldcase)".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect argument count in call (string-foldcase "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-foldcase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfd)".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfd "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfd: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfkd)".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfkd "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfkd: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfc)".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfc "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfc: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfkc)".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect argument count in call (string-normalize-nfkc "hello" "goodbye")".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfkc: ouch is not a string".
|
|
! 5_5.mo:Expected error in mat string=?/string-ci=?: "incorrect argument count in call (string=?)".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string=?/string-ci=?: "incorrect argument count in call (string-ci=?)".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<?/string-ci<?: "incorrect argument count in call (string<?)".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<?/string-ci<?: "incorrect argument count in call (string-ci<?)".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>?/string-ci>?: "incorrect argument count in call (string>?)".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>?/string-ci>?: "incorrect argument count in call (string-ci>?)".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<=?/string-ci<=?: "incorrect argument count in call (string<=?)".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<=?/string-ci<=?: "incorrect argument count in call (string-ci<=?)".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>=?/string-ci>=?: "incorrect argument count in call (string>=?)".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>=?/string-ci>=?: "incorrect argument count in call (string-ci>=?)".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect argument count in call (string=?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect argument count in call (string=? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect argument count in call (string-ci=?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect argument count in call (string-ci=? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect argument count in call (string<?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect argument count in call (string<? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect argument count in call (string-ci<?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect argument count in call (string-ci<? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect argument count in call (string>?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect argument count in call (string>? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect argument count in call (string-ci>?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect argument count in call (string-ci>? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect argument count in call (string<=?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect argument count in call (string<=? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect argument count in call (string-ci<=?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect argument count in call (string-ci<=? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect argument count in call (string>=?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect argument count in call (string>=? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect argument count in call (string-ci>=?)".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect argument count in call (string-ci>=? (quote a))".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string-ci>=?: a is not a string".
|
|
--- 2145,2290 ----
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: lengths of input string "" and "x" differ".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: lengths of input string "y" and "" differ".
|
|
5_4.mo:Expected error in mat string-for-each: "string-for-each: lengths of input string "y" and "" differ".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 0 to #<procedure string-upcase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 2 to #<procedure string-upcase>".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-upcase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 0 to #<procedure string-downcase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 2 to #<procedure string-downcase>".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-downcase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 0 to #<procedure string-titlecase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 2 to #<procedure string-titlecase>".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-titlecase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 0 to #<procedure string-foldcase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 2 to #<procedure string-foldcase>".
|
|
5_4.mo:Expected error in mat string-xcase-errors: "string-foldcase: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 0 to #<procedure string-normalize-nfd>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 2 to #<procedure string-normalize-nfd>".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfd: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 0 to #<procedure string-normalize-nfkd>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 2 to #<procedure string-normalize-nfkd>".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfkd: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 0 to #<procedure string-normalize-nfc>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 2 to #<procedure string-normalize-nfc>".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfc: ouch is not a string".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 0 to #<procedure string-normalize-nfkc>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 2 to #<procedure string-normalize-nfkc>".
|
|
5_4.mo:Expected error in mat normalization-tests: "string-normalize-nfkc: ouch is not a string".
|
|
! 5_5.mo:Expected error in mat string=?/string-ci=?: "incorrect number of arguments 0 to #<procedure string=?>".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string=?/string-ci=?: "incorrect number of arguments 0 to #<procedure string-ci=?>".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat string=?/string-ci=?: "string-ci=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<?/string-ci<?: "incorrect number of arguments 0 to #<procedure string<?>".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<?/string-ci<?: "incorrect number of arguments 0 to #<procedure string-ci<?>".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat string<?/string-ci<?: "string-ci<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>?/string-ci>?: "incorrect number of arguments 0 to #<procedure string>?>".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>?/string-ci>?: "incorrect number of arguments 0 to #<procedure string-ci>?>".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat string>?/string-ci>?: "string-ci>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<=?/string-ci<=?: "incorrect number of arguments 0 to #<procedure string<=?>".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string<=?/string-ci<=?: "incorrect number of arguments 0 to #<procedure string-ci<=?>".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat string<=?/string-ci<=?: "string-ci<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>=?/string-ci>=?: "incorrect number of arguments 0 to #<procedure string>=?>".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string>=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat string>=?/string-ci>=?: "incorrect number of arguments 0 to #<procedure string-ci>=?>".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat string>=?/string-ci>=?: "string-ci>=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect number of arguments 0 to #<procedure string=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect number of arguments 1 to #<procedure string=?>".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect number of arguments 0 to #<procedure string-ci=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect number of arguments 1 to #<procedure string-ci=?>".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "string-ci=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect number of arguments 0 to #<procedure string<?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect number of arguments 1 to #<procedure string<?>".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect number of arguments 0 to #<procedure string-ci<?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect number of arguments 1 to #<procedure string-ci<?>".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "string-ci<?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect number of arguments 0 to #<procedure string>?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect number of arguments 1 to #<procedure string>?>".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect number of arguments 0 to #<procedure string-ci>?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect number of arguments 1 to #<procedure string-ci>?>".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "string-ci>?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect number of arguments 0 to #<procedure string<=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect number of arguments 1 to #<procedure string<=?>".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect number of arguments 0 to #<procedure string-ci<=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect number of arguments 1 to #<procedure string-ci<=?>".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "string-ci<=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect number of arguments 0 to #<procedure string>=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect number of arguments 1 to #<procedure string>=?>".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string>=?: a is not a string".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect number of arguments 0 to #<procedure string-ci>=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect number of arguments 1 to #<procedure string-ci>=?>".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string-ci>=?: a is not a string".
|
|
5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "string-ci>=?: a is not a string".
|
|
***************
|
|
*** 2292,2330 ****
|
|
5_5.mo:Expected error in mat string: "string: a is not a character".
|
|
5_5.mo:Expected error in mat string: "string: a is not a character".
|
|
5_5.mo:Expected error in mat string: "string: a is not a character".
|
|
! 5_5.mo:Expected error in mat make-string: "incorrect argument count in call (make-string)".
|
|
! 5_5.mo:Expected error in mat make-string: "incorrect argument count in call (make-string 2 #\a #\b)".
|
|
5_5.mo:Expected error in mat make-string: "make-string: a is not a character".
|
|
5_5.mo:Expected error in mat make-string: "make-string: a is not a valid string length".
|
|
! 5_5.mo:Expected error in mat string-length: "incorrect argument count in call (string-length)".
|
|
! 5_5.mo:Expected error in mat string-length: "incorrect argument count in call (string-length "hi" "there")".
|
|
5_5.mo:Expected error in mat string-length: "string-length: a is not a string".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect argument count in call (string-ref)".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect argument count in call (string-ref "hi")".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect argument count in call (string-ref "hi" 3 4)".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: a is not a string".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: a is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: -1 is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: 2 is not a valid index for "hi"".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect argument count in call (string-set!)".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect argument count in call (string-set! "hi")".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect argument count in call (string-set! "hi" 1)".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect argument count in call (string-set! "hi" 3 #\a #\b)".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: a is not a mutable string".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: a is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: 3 is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: -1 is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: 2 is not a valid index for "hi"".
|
|
! 5_5.mo:Expected error in mat string-copy: "incorrect argument count in call (string-copy)".
|
|
! 5_5.mo:Expected error in mat string-copy: "incorrect argument count in call (string-copy "hi" "there")".
|
|
5_5.mo:Expected error in mat string-copy: "string-copy: a is not a string".
|
|
5_5.mo:Expected error in mat string-copy: "string-copy: (a b c) is not a string".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect argument count in call (string-copy!)".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect argument count in call (string-copy! $s2)".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect argument count in call (string-copy! $s2 3)".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect argument count in call (string-copy! $s2 3 $s1)".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect argument count in call (string-copy! $s2 3 $s1 1)".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect argument count in call (string-copy! $s2 3 $s1 1 2 ...)".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: 0 is not a string".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: #vu8(1 2 3) is not a mutable string".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: invalid start value -1".
|
|
--- 2292,2330 ----
|
|
5_5.mo:Expected error in mat string: "string: a is not a character".
|
|
5_5.mo:Expected error in mat string: "string: a is not a character".
|
|
5_5.mo:Expected error in mat string: "string: a is not a character".
|
|
! 5_5.mo:Expected error in mat make-string: "incorrect number of arguments 0 to #<procedure make-string>".
|
|
! 5_5.mo:Expected error in mat make-string: "incorrect number of arguments 3 to #<procedure make-string>".
|
|
5_5.mo:Expected error in mat make-string: "make-string: a is not a character".
|
|
5_5.mo:Expected error in mat make-string: "make-string: a is not a valid string length".
|
|
! 5_5.mo:Expected error in mat string-length: "incorrect number of arguments 0 to #<procedure string-length>".
|
|
! 5_5.mo:Expected error in mat string-length: "incorrect number of arguments 2 to #<procedure string-length>".
|
|
5_5.mo:Expected error in mat string-length: "string-length: a is not a string".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect number of arguments 0 to #<procedure string-ref>".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect number of arguments 1 to #<procedure string-ref>".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect number of arguments 3 to #<procedure string-ref>".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: a is not a string".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: a is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: -1 is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-ref: "string-ref: 2 is not a valid index for "hi"".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments 0 to #<procedure string-set!>".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments 1 to #<procedure string-set!>".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments 2 to #<procedure string-set!>".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments 4 to #<procedure string-set!>".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: a is not a mutable string".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: a is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: 3 is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: -1 is not a valid index for "hi"".
|
|
5_5.mo:Expected error in mat string-set!: "string-set!: 2 is not a valid index for "hi"".
|
|
! 5_5.mo:Expected error in mat string-copy: "incorrect number of arguments 0 to #<procedure string-copy>".
|
|
! 5_5.mo:Expected error in mat string-copy: "incorrect number of arguments 2 to #<procedure string-copy>".
|
|
5_5.mo:Expected error in mat string-copy: "string-copy: a is not a string".
|
|
5_5.mo:Expected error in mat string-copy: "string-copy: (a b c) is not a string".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 0 to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 1 to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 2 to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 3 to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 4 to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 6 to #<procedure string-copy!>".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: 0 is not a string".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: #vu8(1 2 3) is not a mutable string".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: invalid start value -1".
|
|
***************
|
|
*** 2348,2356 ****
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: index 4 + count 1 is beyond the end of "1234"".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: index 0 + count 500 is beyond the end of "abcdefghi"".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: index 500 + count 0 is beyond the end of "abcdefghi"".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect argument count in call (string-truncate!)".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect argument count in call (string-truncate! $s)".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect argument count in call (string-truncate! $s 3 15)".
|
|
5_5.mo:Expected error in mat string-truncate!: "string-truncate!: 0 is not a mutable string".
|
|
5_5.mo:Expected error in mat string-truncate!: "string-truncate!: #vu8(1 2 3) is not a mutable string".
|
|
5_5.mo:Expected error in mat string-truncate!: "string-truncate!: invalid new length -1 for "abcdefghi"".
|
|
--- 2348,2356 ----
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: index 4 + count 1 is beyond the end of "1234"".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: index 0 + count 500 is beyond the end of "abcdefghi"".
|
|
5_5.mo:Expected error in mat string-copy!: "string-copy!: index 500 + count 0 is beyond the end of "abcdefghi"".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect number of arguments 0 to #<procedure string-truncate!>".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect number of arguments 1 to #<procedure string-truncate!>".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect number of arguments 3 to #<procedure string-truncate!>".
|
|
5_5.mo:Expected error in mat string-truncate!: "string-truncate!: 0 is not a mutable string".
|
|
5_5.mo:Expected error in mat string-truncate!: "string-truncate!: #vu8(1 2 3) is not a mutable string".
|
|
5_5.mo:Expected error in mat string-truncate!: "string-truncate!: invalid new length -1 for "abcdefghi"".
|
|
***************
|
|
*** 2365,2417 ****
|
|
5_5.mo:Expected error in mat string-append-immutable: "string-append-immutable: a is not a string".
|
|
5_5.mo:Expected error in mat string-append-immutable: "string-append-immutable: b is not a string".
|
|
5_5.mo:Expected error in mat string-append-immutable: "string-append-immutable: b is not a string".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect argument count in call (substring)".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect argument count in call (substring "hi")".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect argument count in call (substring "hi" 0)".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect argument count in call (substring "hi" 0 2 3)".
|
|
5_5.mo:Expected error in mat substring: "substring: 0 and 3 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: -1 and 2 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: a and 2 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: a is not a string".
|
|
5_5.mo:Expected error in mat substring: "substring: 0 and a are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: 1 and 0 are not valid start/end indices for "hi"".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect argument count in call (string-fill!)".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect argument count in call (string-fill! "hi")".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect argument count in call (string-fill! "hi" #\a #\b)".
|
|
5_5.mo:Expected error in mat string-fill!: "string-fill!: a is not a character".
|
|
5_5.mo:Expected error in mat string-fill!: "string-fill!: a is not a mutable string".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect argument count in call (substring-fill!)".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect argument count in call (substring-fill! "hi")".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect argument count in call (substring-fill! "hi" 0)".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect argument count in call (substring-fill! "hi" 0 2)".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: 0 and 3 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: -1 and 3 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: a is not a mutable string".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: 0 and a are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: 1 and 0 are not valid start/end indices for "hi"".
|
|
! 5_5.mo:Expected error in mat list->string: "incorrect argument count in call (list->string)".
|
|
! 5_5.mo:Expected error in mat list->string: "incorrect argument count in call (list->string (quote (#\a #\b)) (quote (#\c #\d)))".
|
|
5_5.mo:Expected error in mat list->string: "list->string: a is not a proper list".
|
|
5_5.mo:Expected error in mat list->string: "list->string: a is not a character".
|
|
5_5.mo:Expected error in mat list->string: "list->string: (#\a #\b . #\c) is not a proper list".
|
|
5_5.mo:Expected error in mat list->string: "list->string: (#\a #\b #\c #\b #\c #\b ...) is circular".
|
|
! 5_5.mo:Expected error in mat string->list: "incorrect argument count in call (string->list)".
|
|
! 5_5.mo:Expected error in mat string->list: "incorrect argument count in call (string->list "ab" "cd")".
|
|
5_5.mo:Expected error in mat string->list: "string->list: a is not a string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-set!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-fill!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "substring-fill!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-copy!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-truncate!: "abc" is not a mutable string".
|
|
! bytevector.mo:Expected error in mat native-endianness: "incorrect argument count in call (native-endianness (quote big))".
|
|
bytevector.mo:Expected error in mat endianness: "invalid endianness spam".
|
|
bytevector.mo:Expected error in mat endianness: "invalid endianness (quote big)".
|
|
bytevector.mo:Expected error in mat endianness: "invalid endianness "little"".
|
|
bytevector.mo:Expected error in mat endianness: "invalid syntax (endianness)".
|
|
bytevector.mo:Expected error in mat endianness: "invalid syntax (endianness . big)".
|
|
bytevector.mo:Expected error in mat endianness: "invalid syntax (endianness big little)".
|
|
! bytevector.mo:Expected error in mat make-bytevector: "incorrect argument count in call (make-bytevector)".
|
|
! bytevector.mo:Expected error in mat make-bytevector: "incorrect argument count in call (make-bytevector 0 0 0)".
|
|
bytevector.mo:Expected error in mat make-bytevector: "make-bytevector: -1 is not a valid bytevector length".
|
|
bytevector.mo:Expected error in mat make-bytevector: "make-bytevector: -1 is not a valid bytevector length".
|
|
bytevector.mo:Expected error in mat make-bytevector: "make-bytevector: <int> is not a valid bytevector length".
|
|
--- 2365,2417 ----
|
|
5_5.mo:Expected error in mat string-append-immutable: "string-append-immutable: a is not a string".
|
|
5_5.mo:Expected error in mat string-append-immutable: "string-append-immutable: b is not a string".
|
|
5_5.mo:Expected error in mat string-append-immutable: "string-append-immutable: b is not a string".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments 0 to #<procedure substring>".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments 1 to #<procedure substring>".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments 2 to #<procedure substring>".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments 4 to #<procedure substring>".
|
|
5_5.mo:Expected error in mat substring: "substring: 0 and 3 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: -1 and 2 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: a and 2 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: a is not a string".
|
|
5_5.mo:Expected error in mat substring: "substring: 0 and a are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring: "substring: 1 and 0 are not valid start/end indices for "hi"".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect number of arguments 0 to #<procedure string-fill!>".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect number of arguments 1 to #<procedure string-fill!>".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect number of arguments 3 to #<procedure string-fill!>".
|
|
5_5.mo:Expected error in mat string-fill!: "string-fill!: a is not a character".
|
|
5_5.mo:Expected error in mat string-fill!: "string-fill!: a is not a mutable string".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments 0 to #<procedure substring-fill!>".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments 1 to #<procedure substring-fill!>".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments 2 to #<procedure substring-fill!>".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments 3 to #<procedure substring-fill!>".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: 0 and 3 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: -1 and 3 are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: a is not a mutable string".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: 0 and a are not valid start/end indices for "hi"".
|
|
5_5.mo:Expected error in mat substring-fill!: "substring-fill!: 1 and 0 are not valid start/end indices for "hi"".
|
|
! 5_5.mo:Expected error in mat list->string: "incorrect number of arguments 0 to #<procedure list->string>".
|
|
! 5_5.mo:Expected error in mat list->string: "incorrect number of arguments 2 to #<procedure list->string>".
|
|
5_5.mo:Expected error in mat list->string: "list->string: a is not a proper list".
|
|
5_5.mo:Expected error in mat list->string: "list->string: a is not a character".
|
|
5_5.mo:Expected error in mat list->string: "list->string: (#\a #\b . #\c) is not a proper list".
|
|
5_5.mo:Expected error in mat list->string: "list->string: (#\a #\b #\c #\b #\c #\b ...) is circular".
|
|
! 5_5.mo:Expected error in mat string->list: "incorrect number of arguments 0 to #<procedure string->list>".
|
|
! 5_5.mo:Expected error in mat string->list: "incorrect number of arguments 2 to #<procedure string->list>".
|
|
5_5.mo:Expected error in mat string->list: "string->list: a is not a string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-set!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-fill!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "substring-fill!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-copy!: "abc" is not a mutable string".
|
|
5_5.mo:Expected error in mat string->immutable-string: "string-truncate!: "abc" is not a mutable string".
|
|
! bytevector.mo:Expected error in mat native-endianness: "incorrect number of arguments 1 to #<procedure native-endianness>".
|
|
bytevector.mo:Expected error in mat endianness: "invalid endianness spam".
|
|
bytevector.mo:Expected error in mat endianness: "invalid endianness (quote big)".
|
|
bytevector.mo:Expected error in mat endianness: "invalid endianness "little"".
|
|
bytevector.mo:Expected error in mat endianness: "invalid syntax (endianness)".
|
|
bytevector.mo:Expected error in mat endianness: "invalid syntax (endianness . big)".
|
|
bytevector.mo:Expected error in mat endianness: "invalid syntax (endianness big little)".
|
|
! bytevector.mo:Expected error in mat make-bytevector: "incorrect number of arguments 0 to #<procedure make-bytevector>".
|
|
! bytevector.mo:Expected error in mat make-bytevector: "incorrect number of arguments 3 to #<procedure make-bytevector>".
|
|
bytevector.mo:Expected error in mat make-bytevector: "make-bytevector: -1 is not a valid bytevector length".
|
|
bytevector.mo:Expected error in mat make-bytevector: "make-bytevector: -1 is not a valid bytevector length".
|
|
bytevector.mo:Expected error in mat make-bytevector: "make-bytevector: <int> is not a valid bytevector length".
|
|
***************
|
|
*** 2428,2457 ****
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value -500".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 1e+100".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000".
|
|
! bytevector.mo:Expected error in mat bytevector-length: "incorrect argument count in call (bytevector-length)".
|
|
! bytevector.mo:Expected error in mat bytevector-length: "incorrect argument count in call (bytevector-length #vu8() #vu8())".
|
|
bytevector.mo:Expected error in mat bytevector-length: "bytevector-length: (a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-length: "bytevector-length: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect argument count in call (bytevector-s8-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect argument count in call (bytevector-s8-ref #vu8(3 252 5))".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect argument count in call (bytevector-s8-ref #vu8(3 252 5) 0 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: #(3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: (3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: 3 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: -1 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: a is not a valid index for #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect argument count in call (bytevector-u8-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect argument count in call (bytevector-u8-ref #vu8(3 252 5))".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect argument count in call (bytevector-u8-ref #vu8(3 252 5) 0 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: #(3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: (3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: 3 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: -1 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: a is not a valid index for #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect argument count in call (bytevector-s8-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect argument count in call (bytevector-s8-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect argument count in call (bytevector-s8-set! $v1 2)".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect argument count in call (bytevector-s8-set! $v1 2 3 4)".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: 3 is not a valid index for #vu8(3 4 5)".
|
|
--- 2428,2457 ----
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value -500".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 1e+100".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000".
|
|
! bytevector.mo:Expected error in mat bytevector-length: "incorrect number of arguments 0 to #<procedure bytevector-length>".
|
|
! bytevector.mo:Expected error in mat bytevector-length: "incorrect number of arguments 2 to #<procedure bytevector-length>".
|
|
bytevector.mo:Expected error in mat bytevector-length: "bytevector-length: (a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-length: "bytevector-length: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect number of arguments 0 to #<procedure bytevector-s8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect number of arguments 1 to #<procedure bytevector-s8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect number of arguments 3 to #<procedure bytevector-s8-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: #(3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: (3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: 3 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: -1 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s8-ref: "bytevector-s8-ref: a is not a valid index for #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect number of arguments 0 to #<procedure bytevector-u8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect number of arguments 1 to #<procedure bytevector-u8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect number of arguments 3 to #<procedure bytevector-u8-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: #(3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: (3 -4 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: 3 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: -1 is not a valid index for #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u8-ref: "bytevector-u8-ref: a is not a valid index for #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments 0 to #<procedure bytevector-s8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments 1 to #<procedure bytevector-s8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments 2 to #<procedure bytevector-s8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments 4 to #<procedure bytevector-s8-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: 3 is not a valid index for #vu8(3 4 5)".
|
|
***************
|
|
*** 2460,2469 ****
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: invalid value -129".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: invalid value 128".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: invalid value d".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect argument count in call (bytevector-u8-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect argument count in call (bytevector-u8-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect argument count in call (bytevector-u8-set! $v1 2)".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect argument count in call (bytevector-u8-set! $v1 2 3 4)".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: 3 is not a valid index for #vu8(3 4 5)".
|
|
--- 2460,2469 ----
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: invalid value -129".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: invalid value 128".
|
|
bytevector.mo:Expected error in mat bytevector-s8-set!: "bytevector-s8-set!: invalid value d".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments 0 to #<procedure bytevector-u8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments 1 to #<procedure bytevector-u8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments 2 to #<procedure bytevector-u8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments 4 to #<procedure bytevector-u8-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: (3 4 5) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: 3 is not a valid index for #vu8(3 4 5)".
|
|
***************
|
|
*** 2472,2480 ****
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: invalid value 256".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: invalid value d".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect argument count in call (bytevector-s16-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect argument count in call (bytevector-s16-native-ref #vu8(3 252 5))".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect argument count in call (bytevector-s16-native-ref #vu8(3 252 5) 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
--- 2472,2480 ----
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: invalid value 256".
|
|
bytevector.mo:Expected error in mat bytevector-u8-set!: "bytevector-u8-set!: invalid value d".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-s16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-s16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-s16-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
***************
|
|
*** 2482,2490 ****
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index 2 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index 3 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect argument count in call (bytevector-u16-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect argument count in call (bytevector-u16-native-ref #vu8(3 252 5))".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect argument count in call (bytevector-u16-native-ref #vu8(3 252 5) 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
--- 2482,2490 ----
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index 2 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index 3 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-ref: "bytevector-s16-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-u16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-u16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-u16-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
***************
|
|
*** 2492,2501 ****
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index 2 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index 3 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect argument count in call (bytevector-s16-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect argument count in call (bytevector-s16-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect argument count in call (bytevector-s16-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect argument count in call (bytevector-s16-native-set! $v1 0 0 15)".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2492,2501 ----
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index 2 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index 3 for bytevector #vu8(3 252 5)".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-ref: "bytevector-u16-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-s16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-s16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-s16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-s16-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2509,2518 ****
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid value 32768".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid value -32769".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect argument count in call (bytevector-u16-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect argument count in call (bytevector-u16-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect argument count in call (bytevector-u16-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect argument count in call (bytevector-u16-native-set! $v1 0 0 15)".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2509,2518 ----
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid value 32768".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid value -32769".
|
|
bytevector.mo:Expected error in mat bytevector-s16-native-set!: "bytevector-s16-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-u16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-u16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-u16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-u16-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2526,2534 ****
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid value 65536".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect argument count in call (bytevector-s16-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect argument count in call (bytevector-s16-ref #vu8(3 252 5))".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect argument count in call (bytevector-s16-ref #vu8(3 252 5) 0 0 (quote big))".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
--- 2526,2534 ----
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid value 65536".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u16-native-set!: "bytevector-u16-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect number of arguments 0 to #<procedure bytevector-s16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect number of arguments 1 to #<procedure bytevector-s16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect number of arguments 4 to #<procedure bytevector-s16-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
***************
|
|
*** 2538,2546 ****
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect argument count in call (bytevector-u16-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect argument count in call (bytevector-u16-ref #vu8(3 252 5))".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect argument count in call (bytevector-u16-ref #vu8(3 252 5) 0 0 (quote big))".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
--- 2538,2546 ----
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s16-ref: "bytevector-s16-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect number of arguments 0 to #<procedure bytevector-u16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect number of arguments 1 to #<procedure bytevector-u16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect number of arguments 4 to #<procedure bytevector-u16-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: #(3 252 5) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: invalid index -1 for bytevector #vu8(3 252 5)".
|
|
***************
|
|
*** 2550,2559 ****
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect argument count in call (bytevector-s16-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect argument count in call (bytevector-s16-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect argument count in call (bytevector-s16-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect argument count in call (bytevector-s16-set! $v1 0 0 0 (native-endianness))".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2550,2559 ----
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u16-ref: "bytevector-u16-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments 0 to #<procedure bytevector-s16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments 1 to #<procedure bytevector-s16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments 3 to #<procedure bytevector-s16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments 5 to #<procedure bytevector-s16-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2569,2578 ****
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect argument count in call (bytevector-u16-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect argument count in call (bytevector-u16-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect argument count in call (bytevector-u16-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect argument count in call (bytevector-u16-set! $v1 0 0 0 (native-endianness))".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2569,2578 ----
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s16-set!: "bytevector-s16-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments 0 to #<procedure bytevector-u16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments 1 to #<procedure bytevector-u16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments 3 to #<procedure bytevector-u16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments 5 to #<procedure bytevector-u16-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2588,2597 ****
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect argument count in call (bytevector-s24-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect argument count in call (bytevector-s24-ref #vu8(3 252 5 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect argument count in call (bytevector-s24-ref #vu8(3 252 5 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect argument count in call (bytevector-s24-ref #vu8(3 252 5 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2588,2597 ----
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u16-set!: "bytevector-u16-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments 0 to #<procedure bytevector-s24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments 1 to #<procedure bytevector-s24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments 2 to #<procedure bytevector-s24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments 4 to #<procedure bytevector-s24-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2601,2610 ****
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect argument count in call (bytevector-u24-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect argument count in call (bytevector-u24-ref #vu8(3 252 5 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect argument count in call (bytevector-u24-ref #vu8(3 252 5 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect argument count in call (bytevector-u24-ref #vu8(3 252 5 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2601,2610 ----
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s24-ref: "bytevector-s24-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments 0 to #<procedure bytevector-u24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments 1 to #<procedure bytevector-u24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments 2 to #<procedure bytevector-u24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments 4 to #<procedure bytevector-u24-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2614,2624 ****
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect argument count in call (bytevector-s24-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect argument count in call (bytevector-s24-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect argument count in call (bytevector-s24-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect argument count in call (bytevector-s24-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect argument count in call (bytevector-s24-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2614,2624 ----
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u24-ref: "bytevector-u24-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments 0 to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments 1 to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments 2 to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments 3 to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments 5 to #<procedure bytevector-s24-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2632,2642 ****
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect argument count in call (bytevector-u24-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect argument count in call (bytevector-u24-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect argument count in call (bytevector-u24-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect argument count in call (bytevector-u24-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect argument count in call (bytevector-u24-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2632,2642 ----
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s24-set!: "bytevector-s24-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments 0 to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments 1 to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments 2 to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments 3 to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments 5 to #<procedure bytevector-u24-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2650,2658 ****
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect argument count in call (bytevector-s32-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect argument count in call (bytevector-s32-native-ref #vu8(3 252 5 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect argument count in call (bytevector-s32-native-ref #vu8(3 252 5 0) 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2650,2658 ----
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u24-set!: "bytevector-u24-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-s32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-s32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-s32-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2664,2672 ****
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index 6 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index 7 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect argument count in call (bytevector-u32-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect argument count in call (bytevector-u32-native-ref #vu8(3 252 5 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect argument count in call (bytevector-u32-native-ref #vu8(3 252 5 0) 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2664,2672 ----
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index 6 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index 7 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-ref: "bytevector-s32-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-u32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-u32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-u32-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2678,2687 ****
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index 6 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index 7 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect argument count in call (bytevector-s32-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect argument count in call (bytevector-s32-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect argument count in call (bytevector-s32-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect argument count in call (bytevector-s32-native-set! $v1 0 0 15)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2678,2687 ----
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index 6 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index 7 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-ref: "bytevector-u32-native-ref: invalid index 4.0 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-s32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-s32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-s32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-s32-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2708,2717 ****
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid value <-int>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect argument count in call (bytevector-u32-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect argument count in call (bytevector-u32-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect argument count in call (bytevector-u32-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect argument count in call (bytevector-u32-native-set! $v1 0 0 15)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2708,2717 ----
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid value <-int>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-native-set!: "bytevector-s32-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-u32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-u32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-u32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-u32-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2738,2747 ****
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect argument count in call (bytevector-s32-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect argument count in call (bytevector-s32-ref #vu8(3 252 5 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect argument count in call (bytevector-s32-ref #vu8(3 252 5 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect argument count in call (bytevector-s32-ref #vu8(3 252 5 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2738,2747 ----
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u32-native-set!: "bytevector-u32-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments 0 to #<procedure bytevector-s32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments 1 to #<procedure bytevector-s32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments 2 to #<procedure bytevector-s32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments 4 to #<procedure bytevector-s32-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2751,2760 ****
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect argument count in call (bytevector-u32-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect argument count in call (bytevector-u32-ref #vu8(3 252 5 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect argument count in call (bytevector-u32-ref #vu8(3 252 5 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect argument count in call (bytevector-u32-ref #vu8(3 252 5 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2751,2760 ----
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s32-ref: "bytevector-s32-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments 0 to #<procedure bytevector-u32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments 1 to #<procedure bytevector-u32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments 2 to #<procedure bytevector-u32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments 4 to #<procedure bytevector-u32-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2764,2774 ****
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect argument count in call (bytevector-s32-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect argument count in call (bytevector-s32-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect argument count in call (bytevector-s32-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect argument count in call (bytevector-s32-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect argument count in call (bytevector-s32-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2764,2774 ----
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u32-ref: "bytevector-u32-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments 0 to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments 1 to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments 2 to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments 3 to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments 5 to #<procedure bytevector-s32-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2783,2793 ****
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect argument count in call (bytevector-u32-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect argument count in call (bytevector-u32-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect argument count in call (bytevector-u32-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect argument count in call (bytevector-u32-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect argument count in call (bytevector-u32-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2783,2793 ----
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s32-set!: "bytevector-s32-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments 0 to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments 1 to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments 2 to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments 3 to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments 5 to #<procedure bytevector-u32-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2802,2811 ****
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect argument count in call (bytevector-s40-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect argument count in call (bytevector-s40-ref #vu8(3 252 5 0 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect argument count in call (bytevector-s40-ref #vu8(3 252 5 0 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect argument count in call (bytevector-s40-ref #vu8(3 252 5 0 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2802,2811 ----
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u32-set!: "bytevector-u32-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments 0 to #<procedure bytevector-s40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments 1 to #<procedure bytevector-s40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments 2 to #<procedure bytevector-s40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments 4 to #<procedure bytevector-s40-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2815,2824 ****
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect argument count in call (bytevector-u40-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect argument count in call (bytevector-u40-ref #vu8(3 252 5 0 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect argument count in call (bytevector-u40-ref #vu8(3 252 5 0 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect argument count in call (bytevector-u40-ref #vu8(3 252 5 0 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2815,2824 ----
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s40-ref: "bytevector-s40-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments 0 to #<procedure bytevector-u40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments 1 to #<procedure bytevector-u40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments 2 to #<procedure bytevector-u40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments 4 to #<procedure bytevector-u40-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2828,2838 ****
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect argument count in call (bytevector-s40-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect argument count in call (bytevector-s40-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect argument count in call (bytevector-s40-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect argument count in call (bytevector-s40-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect argument count in call (bytevector-s40-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2828,2838 ----
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u40-ref: "bytevector-u40-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments 0 to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments 1 to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments 2 to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments 3 to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments 5 to #<procedure bytevector-s40-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2846,2856 ****
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect argument count in call (bytevector-u40-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect argument count in call (bytevector-u40-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect argument count in call (bytevector-u40-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect argument count in call (bytevector-u40-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect argument count in call (bytevector-u40-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2846,2856 ----
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s40-set!: "bytevector-s40-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments 0 to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments 1 to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments 2 to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments 3 to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments 5 to #<procedure bytevector-u40-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2864,2873 ****
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect argument count in call (bytevector-s48-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect argument count in call (bytevector-s48-ref #vu8(3 252 5 0 0 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect argument count in call (bytevector-s48-ref #vu8(3 252 5 0 0 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect argument count in call (bytevector-s48-ref #vu8(3 252 5 0 0 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2864,2873 ----
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u40-set!: "bytevector-u40-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments 0 to #<procedure bytevector-s48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments 1 to #<procedure bytevector-s48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments 2 to #<procedure bytevector-s48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments 4 to #<procedure bytevector-s48-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2877,2886 ****
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect argument count in call (bytevector-u48-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect argument count in call (bytevector-u48-ref #vu8(3 252 5 0 0 0))".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect argument count in call (bytevector-u48-ref #vu8(3 252 5 0 0 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect argument count in call (bytevector-u48-ref #vu8(3 252 5 0 0 0) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2877,2886 ----
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s48-ref: "bytevector-s48-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments 0 to #<procedure bytevector-u48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments 1 to #<procedure bytevector-u48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments 2 to #<procedure bytevector-u48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments 4 to #<procedure bytevector-u48-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2890,2900 ****
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect argument count in call (bytevector-s48-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect argument count in call (bytevector-s48-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect argument count in call (bytevector-s48-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect argument count in call (bytevector-s48-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect argument count in call (bytevector-s48-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2890,2900 ----
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u48-ref: "bytevector-u48-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments 0 to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments 1 to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments 2 to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments 3 to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments 5 to #<procedure bytevector-s48-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2908,2918 ****
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect argument count in call (bytevector-u48-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect argument count in call (bytevector-u48-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect argument count in call (bytevector-u48-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect argument count in call (bytevector-u48-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect argument count in call (bytevector-u48-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2908,2918 ----
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s48-set!: "bytevector-s48-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments 0 to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments 1 to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments 2 to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments 3 to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments 5 to #<procedure bytevector-u48-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2926,2935 ****
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect argument count in call (bytevector-s56-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect argument count in call (bytevector-s56-ref #vu8(3 252 5 0 0 0 ...))".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect argument count in call (bytevector-s56-ref #vu8(3 252 5 0 0 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect argument count in call (bytevector-s56-ref #vu8(3 252 5 0 0 0 ...) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2926,2935 ----
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u48-set!: "bytevector-u48-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments 0 to #<procedure bytevector-s56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments 1 to #<procedure bytevector-s56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments 2 to #<procedure bytevector-s56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments 4 to #<procedure bytevector-s56-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2939,2948 ****
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect argument count in call (bytevector-u56-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect argument count in call (bytevector-u56-ref #vu8(3 252 5 0 0 0 ...))".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect argument count in call (bytevector-u56-ref #vu8(3 252 5 0 0 0) 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect argument count in call (bytevector-u56-ref #vu8(3 252 5 0 0 0 ...) 0 (native-endianness) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
--- 2939,2948 ----
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-s56-ref: "bytevector-s56-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments 0 to #<procedure bytevector-u56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments 1 to #<procedure bytevector-u56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments 2 to #<procedure bytevector-u56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments 4 to #<procedure bytevector-u56-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: invalid index -1 for bytevector #vu8(3 252 5 0 0 0 ...)".
|
|
***************
|
|
*** 2952,2962 ****
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect argument count in call (bytevector-s56-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect argument count in call (bytevector-s56-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect argument count in call (bytevector-s56-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect argument count in call (bytevector-s56-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect argument count in call (bytevector-s56-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2952,2962 ----
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: unrecognized endianness bigger".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: unrecognized endianness "little"".
|
|
bytevector.mo:Expected error in mat bytevector-u56-ref: "bytevector-u56-ref: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments 0 to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments 1 to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments 2 to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments 3 to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments 5 to #<procedure bytevector-s56-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2970,2980 ****
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect argument count in call (bytevector-u56-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect argument count in call (bytevector-u56-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect argument count in call (bytevector-u56-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect argument count in call (bytevector-u56-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect argument count in call (bytevector-u56-set! $v1 0 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 2970,2980 ----
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-s56-set!: "bytevector-s56-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments 0 to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments 1 to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments 2 to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments 3 to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments 5 to #<procedure bytevector-u56-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 2988,2996 ****
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect argument count in call (bytevector-s64-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect argument count in call (bytevector-s64-native-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect argument count in call (bytevector-s64-native-ref $v1 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 2988,2996 ----
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: unrecognized endianness huge".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: unrecognized endianness "tiny"".
|
|
bytevector.mo:Expected error in mat bytevector-u56-set!: "bytevector-u56-set!: unrecognized endianness #vu8(173 173 173 173 173 173 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-s64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-s64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-s64-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3020,3028 ****
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index 102 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index 103 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect argument count in call (bytevector-u64-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect argument count in call (bytevector-u64-native-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect argument count in call (bytevector-u64-native-ref $v1 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3020,3028 ----
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index 102 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index 103 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-ref: "bytevector-s64-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-u64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-u64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-u64-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3052,3061 ****
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index 102 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index 103 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect argument count in call (bytevector-s64-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect argument count in call (bytevector-s64-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect argument count in call (bytevector-s64-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect argument count in call (bytevector-s64-native-set! $v1 0 0 15)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 3052,3061 ----
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index 102 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index 103 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-ref: "bytevector-u64-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-s64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-s64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-s64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-s64-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 3089,3098 ****
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid value <-int>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect argument count in call (bytevector-u64-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect argument count in call (bytevector-u64-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect argument count in call (bytevector-u64-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect argument count in call (bytevector-u64-native-set! $v1 0 0 15)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 3089,3098 ----
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid value <-int>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-native-set!: "bytevector-s64-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-u64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-u64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-u64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-u64-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 3126,3135 ****
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect argument count in call (bytevector-s64-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect argument count in call (bytevector-s64-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect argument count in call (bytevector-s64-ref $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect argument count in call (bytevector-s64-ref $v1 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3126,3135 ----
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid value <int>".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid value -1".
|
|
bytevector.mo:Expected error in mat bytevector-u64-native-set!: "bytevector-u64-native-set!: invalid value "hello"".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments 0 to #<procedure bytevector-s64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments 1 to #<procedure bytevector-s64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments 2 to #<procedure bytevector-s64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments 4 to #<procedure bytevector-s64-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3145,3154 ****
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: unrecognized endianness (quote bonkers)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: unrecognized endianness get-real".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: unrecognized endianness 1e+23".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect argument count in call (bytevector-u64-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect argument count in call (bytevector-u64-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect argument count in call (bytevector-u64-ref $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect argument count in call (bytevector-u64-ref $v1 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3145,3154 ----
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: unrecognized endianness (quote bonkers)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: unrecognized endianness get-real".
|
|
bytevector.mo:Expected error in mat bytevector-s64-ref: "bytevector-s64-ref: unrecognized endianness 1e+23".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments 0 to #<procedure bytevector-u64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments 1 to #<procedure bytevector-u64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments 2 to #<procedure bytevector-u64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments 4 to #<procedure bytevector-u64-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3164,3174 ****
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: unrecognized endianness (quote bonkers)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: unrecognized endianness get-real".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: unrecognized endianness 1e+23".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect argument count in call (bytevector-s64-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect argument count in call (bytevector-s64-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect argument count in call (bytevector-s64-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect argument count in call (bytevector-s64-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect argument count in call (bytevector-s64-set! $v1 0 0 (quote big) 15)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 3164,3174 ----
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: unrecognized endianness (quote bonkers)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: unrecognized endianness get-real".
|
|
bytevector.mo:Expected error in mat bytevector-u64-ref: "bytevector-u64-ref: unrecognized endianness 1e+23".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments 0 to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments 1 to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments 2 to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments 3 to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments 5 to #<procedure bytevector-s64-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 3187,3197 ****
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: unrecognized endianness gorgeous".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: unrecognized endianness #(ravenous)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect argument count in call (bytevector-u64-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect argument count in call (bytevector-u64-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect argument count in call (bytevector-u64-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect argument count in call (bytevector-u64-set! $v1 0 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect argument count in call (bytevector-u64-set! $v1 0 0 (quote big) 15)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
--- 3187,3197 ----
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: unrecognized endianness gorgeous".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: unrecognized endianness #(ravenous)".
|
|
bytevector.mo:Expected error in mat bytevector-s64-set!: "bytevector-s64-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments 0 to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments 1 to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments 2 to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments 3 to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments 5 to #<procedure bytevector-u64-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: #(0 0 0 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: invalid index -1 for bytevector #vu8(173 173 173 173 173 173 ...)".
|
|
***************
|
|
*** 3210,3218 ****
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: unrecognized endianness gorgeous".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: unrecognized endianness #(ravenous)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect argument count in call (bytevector-ieee-single-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect argument count in call (bytevector-ieee-single-native-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect argument count in call (bytevector-ieee-single-native-ref $v1 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3210,3218 ----
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: unrecognized endianness gorgeous".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: unrecognized endianness #(ravenous)".
|
|
bytevector.mo:Expected error in mat bytevector-u64-set!: "bytevector-u64-set!: unrecognized endianness #t".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-ieee-single-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-ieee-single-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-ieee-single-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3248,3256 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index 38 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index 39 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect argument count in call (bytevector-ieee-double-native-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect argument count in call (bytevector-ieee-double-native-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect argument count in call (bytevector-ieee-double-native-ref $v1 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3248,3256 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index 38 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index 39 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "bytevector-ieee-single-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect number of arguments 0 to #<procedure bytevector-ieee-double-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect number of arguments 1 to #<procedure bytevector-ieee-double-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect number of arguments 3 to #<procedure bytevector-ieee-double-native-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3290,3299 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index 70 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index 71 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect argument count in call (bytevector-ieee-single-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect argument count in call (bytevector-ieee-single-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect argument count in call (bytevector-ieee-single-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect argument count in call (bytevector-ieee-single-native-set! $v1 0 0.0 0.0)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
--- 3290,3299 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index 70 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index 71 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "bytevector-ieee-double-native-ref: invalid index 4.0 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-ieee-single-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-ieee-single-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-ieee-single-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-ieee-single-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
***************
|
|
*** 3327,3336 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: 1.0+0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: 1.0-0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: "oops" is not a real number".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect argument count in call (bytevector-ieee-double-native-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect argument count in call (bytevector-ieee-double-native-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect argument count in call (bytevector-ieee-double-native-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect argument count in call (bytevector-ieee-double-native-set! $v1 0 0.0 0.0)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
--- 3327,3336 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: 1.0+0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: 1.0-0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "bytevector-ieee-single-native-set!: "oops" is not a real number".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments 0 to #<procedure bytevector-ieee-double-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments 1 to #<procedure bytevector-ieee-double-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments 2 to #<procedure bytevector-ieee-double-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments 4 to #<procedure bytevector-ieee-double-native-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
***************
|
|
*** 3376,3385 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: 1.0+0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: 1.0-0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: "oops" is not a real number".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect argument count in call (bytevector-ieee-single-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect argument count in call (bytevector-ieee-single-ref $vnative)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect argument count in call (bytevector-ieee-single-ref $vnative 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect argument count in call (bytevector-ieee-single-ref $vnative 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: invalid index -1 for bytevector #vu8(0 0 0 0 199 0 ...)".
|
|
--- 3376,3385 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: 1.0+0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: 1.0-0.0i is not a real number".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "bytevector-ieee-double-native-set!: "oops" is not a real number".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments 0 to #<procedure bytevector-ieee-single-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments 1 to #<procedure bytevector-ieee-single-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments 2 to #<procedure bytevector-ieee-single-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments 4 to #<procedure bytevector-ieee-single-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: invalid index -1 for bytevector #vu8(0 0 0 0 199 0 ...)".
|
|
***************
|
|
*** 3391,3400 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: unrecognized endianness "nuts"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: unrecognized endianness crazy".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: unrecognized endianness 35".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect argument count in call (bytevector-ieee-double-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect argument count in call (bytevector-ieee-double-ref $vnative)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect argument count in call (bytevector-ieee-double-ref $vnative 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect argument count in call (bytevector-ieee-double-ref $vnative 0 (quote big) 0)".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3391,3400 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: unrecognized endianness "nuts"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: unrecognized endianness crazy".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "bytevector-ieee-single-ref: unrecognized endianness 35".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments 0 to #<procedure bytevector-ieee-double-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments 1 to #<procedure bytevector-ieee-double-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments 2 to #<procedure bytevector-ieee-double-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments 4 to #<procedure bytevector-ieee-double-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3410,3420 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: unrecognized endianness "nuts"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: unrecognized endianness crazy".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: unrecognized endianness 35".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect argument count in call (bytevector-ieee-single-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect argument count in call (bytevector-ieee-single-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect argument count in call (bytevector-ieee-single-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect argument count in call (bytevector-ieee-single-set! $v1 0 0.0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect argument count in call (bytevector-ieee-single-set! $v1 0 0.0 (quote big) (quote bigger))".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
--- 3410,3420 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: unrecognized endianness "nuts"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: unrecognized endianness crazy".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "bytevector-ieee-double-ref: unrecognized endianness 35".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments 0 to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments 1 to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments 2 to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments 3 to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments 5 to #<procedure bytevector-ieee-single-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
***************
|
|
*** 3431,3441 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: unrecognized endianness "ouch"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: unrecognized endianness what?".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: unrecognized endianness #\newline".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect argument count in call (bytevector-ieee-double-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect argument count in call (bytevector-ieee-double-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect argument count in call (bytevector-ieee-double-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect argument count in call (bytevector-ieee-double-set! $v1 0 0.0)".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect argument count in call (bytevector-ieee-double-set! $v1 0 0.0 (quote big) (quote bigger))".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
--- 3431,3441 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: unrecognized endianness "ouch"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: unrecognized endianness what?".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "bytevector-ieee-single-set!: unrecognized endianness #\newline".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments 0 to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments 1 to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments 2 to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments 3 to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments 5 to #<procedure bytevector-ieee-double-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: invalid index -1 for bytevector #vu8(235 235 235 235 235 235 ...)".
|
|
***************
|
|
*** 3456,3466 ****
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: unrecognized endianness "ouch"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: unrecognized endianness what?".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: unrecognized endianness #\newline".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect argument count in call (bytevector-sint-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect argument count in call (bytevector-sint-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect argument count in call (bytevector-sint-ref $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect argument count in call (bytevector-sint-ref $v1 0 (quote big))".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect argument count in call (bytevector-sint-ref $v1 0 (quote big) 5 0)".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3456,3466 ----
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: unrecognized endianness "ouch"".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: unrecognized endianness what?".
|
|
bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "bytevector-ieee-double-set!: unrecognized endianness #\newline".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments 0 to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments 1 to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments 2 to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments 3 to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments 5 to #<procedure bytevector-sint-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3495,3505 ****
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid size 0".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect argument count in call (bytevector-uint-ref)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect argument count in call (bytevector-uint-ref $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect argument count in call (bytevector-uint-ref $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect argument count in call (bytevector-uint-ref $v1 0 (quote big))".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect argument count in call (bytevector-uint-ref $v1 0 (quote big) 5 0)".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3495,3505 ----
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid size 0".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-sint-ref: "bytevector-sint-ref: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments 0 to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments 1 to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments 2 to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments 3 to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments 5 to #<procedure bytevector-uint-ref>".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: #(3 252 5 0 0 0 ...) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3537,3548 ****
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid size <int> for bytevector #vu8(1 2 3 4)".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect argument count in call (bytevector-sint-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect argument count in call (bytevector-sint-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect argument count in call (bytevector-sint-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect argument count in call (bytevector-sint-set! $v1 0 7)".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect argument count in call (bytevector-sint-set! $v1 0 7 (quote big))".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect argument count in call (bytevector-sint-set! $v1 0 7 (quote big) 5 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3537,3548 ----
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid size <int> for bytevector #vu8(1 2 3 4)".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-uint-ref: "bytevector-uint-ref: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 0 to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 1 to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 2 to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 3 to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 4 to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 6 to #<procedure bytevector-sint-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3601,3612 ****
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid size 0".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect argument count in call (bytevector-uint-set!)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect argument count in call (bytevector-uint-set! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect argument count in call (bytevector-uint-set! $v1 0)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect argument count in call (bytevector-uint-set! $v1 0 7)".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect argument count in call (bytevector-uint-set! $v1 0 7 (quote big))".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect argument count in call (bytevector-uint-set! $v1 0 7 (quote big) 5 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
--- 3601,3612 ----
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid size 0".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-sint-set!: "bytevector-sint-set!: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 0 to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 1 to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 2 to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 3 to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 4 to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 6 to #<procedure bytevector-uint-set!>".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: #(3 252 5 0 0 0 ...) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid index -1 for bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
***************
|
|
*** 3665,3680 ****
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid size 0".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-copy: "incorrect argument count in call (bytevector-copy)".
|
|
! bytevector.mo:Expected error in mat bytevector-copy: "incorrect argument count in call (bytevector-copy #vu8() #vu8())".
|
|
bytevector.mo:Expected error in mat bytevector-copy: "bytevector-copy: (a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-copy: "bytevector-copy: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect argument count in call (bytevector-copy!)".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect argument count in call (bytevector-copy! $v2)".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect argument count in call (bytevector-copy! $v2 3)".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect argument count in call (bytevector-copy! $v2 3 $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect argument count in call (bytevector-copy! $v2 3 $v1 1)".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect argument count in call (bytevector-copy! $v2 3 $v1 1 2 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: 0 is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: #(1 2 3) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: invalid start value -1".
|
|
--- 3665,3680 ----
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid size 0".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid size -1".
|
|
bytevector.mo:Expected error in mat bytevector-uint-set!: "bytevector-uint-set!: invalid size byte".
|
|
! bytevector.mo:Expected error in mat bytevector-copy: "incorrect number of arguments 0 to #<procedure bytevector-copy>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy: "incorrect number of arguments 2 to #<procedure bytevector-copy>".
|
|
bytevector.mo:Expected error in mat bytevector-copy: "bytevector-copy: (a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-copy: "bytevector-copy: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 0 to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 1 to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 2 to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 3 to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 4 to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 6 to #<procedure bytevector-copy!>".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: 0 is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: #(1 2 3) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: invalid start value -1".
|
|
***************
|
|
*** 3698,3706 ****
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: index 4 + count 1 is beyond the end of #vu8(1 2 3 4)".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: index 0 + count 500 is beyond the end of #vu8(255 254 253 252 251 250 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: index 500 + count 0 is beyond the end of #vu8(255 254 253 252 251 250 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect argument count in call (bytevector-truncate!)".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect argument count in call (bytevector-truncate! $v)".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect argument count in call (bytevector-truncate! $v 3 15)".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: 0 is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: "abc" is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length -1 for #vu8(1 2 3 4 5 6 ...)".
|
|
--- 3698,3706 ----
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: index 4 + count 1 is beyond the end of #vu8(1 2 3 4)".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: index 0 + count 500 is beyond the end of #vu8(255 254 253 252 251 250 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-copy!: "bytevector-copy!: index 500 + count 0 is beyond the end of #vu8(255 254 253 252 251 250 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect number of arguments 0 to #<procedure bytevector-truncate!>".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect number of arguments 1 to #<procedure bytevector-truncate!>".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect number of arguments 3 to #<procedure bytevector-truncate!>".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: 0 is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: "abc" is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length -1 for #vu8(1 2 3 4 5 6 ...)".
|
|
***************
|
|
*** 3708,3748 ****
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length 1000 for #vu8(1 2 3 4 5 6 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length <int> for #vu8(1 2 3 4 5 6 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length a for #vu8(1 2 3 4 5 6 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect argument count in call (bytevector-fill!)".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect argument count in call (bytevector-fill! $v1)".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect argument count in call (bytevector-fill! $v1 0 0)".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: a is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: #(1) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: -129 is not a valid fill value".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: 256 is not a valid fill value".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: a is not a valid fill value".
|
|
! bytevector.mo:Expected error in mat s8-list->bytevector: "incorrect argument count in call (s8-list->bytevector)".
|
|
! bytevector.mo:Expected error in mat s8-list->bytevector: "incorrect argument count in call (s8-list->bytevector (quote (1 -2 3)) (quote (1 -2 3)))".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: (1 2 . 3) is not a proper list".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: (1 2 3 2 3 2 ...) is circular".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: invalid value -129".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: invalid value 128".
|
|
! bytevector.mo:Expected error in mat u8-list->bytevector: "incorrect argument count in call (u8-list->bytevector)".
|
|
! bytevector.mo:Expected error in mat u8-list->bytevector: "incorrect argument count in call (u8-list->bytevector (quote (1 2 3)) (quote (1 2 3)))".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: invalid value -129".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: invalid value -1".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: (1 2 . 3) is not a proper list".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: (1 2 3 2 3 2 ...) is circular".
|
|
! bytevector.mo:Expected error in mat bytevector->s8-list: "incorrect argument count in call (bytevector->s8-list)".
|
|
! bytevector.mo:Expected error in mat bytevector->s8-list: "incorrect argument count in call (bytevector->s8-list #vu8(1 2 3) #vu8(1 2 3))".
|
|
bytevector.mo:Expected error in mat bytevector->s8-list: "bytevector->s8-list: "hello" is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->s8-list: "bytevector->s8-list: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat bytevector->u8-list: "incorrect argument count in call (bytevector->u8-list)".
|
|
! bytevector.mo:Expected error in mat bytevector->u8-list: "incorrect argument count in call (bytevector->u8-list #vu8(1 2 3) #vu8(1 2 3))".
|
|
bytevector.mo:Expected error in mat bytevector->u8-list: "bytevector->u8-list: "hello" is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->u8-list: "bytevector->u8-list: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect argument count in call (sint-list->bytevector)".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect argument count in call (sint-list->bytevector (quote (1 3 7)) (quote little))".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect argument count in call (sint-list->bytevector (quote (1 -3 7)) (quote big) 1 0)".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: (1 2 . 3) is not a proper list".
|
|
--- 3708,3748 ----
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length 1000 for #vu8(1 2 3 4 5 6 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length <int> for #vu8(1 2 3 4 5 6 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-truncate!: "bytevector-truncate!: invalid new length a for #vu8(1 2 3 4 5 6 ...)".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect number of arguments 0 to #<procedure bytevector-fill!>".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect number of arguments 1 to #<procedure bytevector-fill!>".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect number of arguments 3 to #<procedure bytevector-fill!>".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: a is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: #(1) is not a mutable bytevector".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: -129 is not a valid fill value".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: 256 is not a valid fill value".
|
|
bytevector.mo:Expected error in mat bytevector-fill!: "bytevector-fill!: a is not a valid fill value".
|
|
! bytevector.mo:Expected error in mat s8-list->bytevector: "incorrect number of arguments 0 to #<procedure s8-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat s8-list->bytevector: "incorrect number of arguments 2 to #<procedure s8-list->bytevector>".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: (1 2 . 3) is not a proper list".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: (1 2 3 2 3 2 ...) is circular".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: invalid value -129".
|
|
bytevector.mo:Expected error in mat s8-list->bytevector: "s8-list->bytevector: invalid value 128".
|
|
! bytevector.mo:Expected error in mat u8-list->bytevector: "incorrect number of arguments 0 to #<procedure u8-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat u8-list->bytevector: "incorrect number of arguments 2 to #<procedure u8-list->bytevector>".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: invalid value -129".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: invalid value -1".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: (1 2 . 3) is not a proper list".
|
|
bytevector.mo:Expected error in mat u8-list->bytevector: "u8-list->bytevector: (1 2 3 2 3 2 ...) is circular".
|
|
! bytevector.mo:Expected error in mat bytevector->s8-list: "incorrect number of arguments 0 to #<procedure bytevector->s8-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->s8-list: "incorrect number of arguments 2 to #<procedure bytevector->s8-list>".
|
|
bytevector.mo:Expected error in mat bytevector->s8-list: "bytevector->s8-list: "hello" is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->s8-list: "bytevector->s8-list: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat bytevector->u8-list: "incorrect number of arguments 0 to #<procedure bytevector->u8-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->u8-list: "incorrect number of arguments 2 to #<procedure bytevector->u8-list>".
|
|
bytevector.mo:Expected error in mat bytevector->u8-list: "bytevector->u8-list: "hello" is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->u8-list: "bytevector->u8-list: (a b c) is not a bytevector".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect number of arguments 0 to #<procedure sint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect number of arguments 2 to #<procedure sint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect number of arguments 4 to #<procedure sint-list->bytevector>".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: (1 2 . 3) is not a proper list".
|
|
***************
|
|
*** 3781,3789 ****
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: invalid size 0".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: invalid size 1.0".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: invalid size "oops"".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect argument count in call (uint-list->bytevector)".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect argument count in call (uint-list->bytevector (quote (1 3 7)) (quote little))".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect argument count in call (uint-list->bytevector (quote (1 -3 7)) (quote big) 1 0)".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: (1 2 . 3) is not a proper list".
|
|
--- 3781,3789 ----
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: invalid size 0".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: invalid size 1.0".
|
|
bytevector.mo:Expected error in mat sint-list->bytevector: "sint-list->bytevector: invalid size "oops"".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect number of arguments 0 to #<procedure uint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect number of arguments 2 to #<procedure uint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect number of arguments 4 to #<procedure uint-list->bytevector>".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: #(a b c) is not a proper list".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: (1 2 . 3) is not a proper list".
|
|
***************
|
|
*** 3822,3830 ****
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: invalid size 0".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: invalid size 1.0".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: invalid size "oops"".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect argument count in call (bytevector->sint-list)".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect argument count in call (bytevector->sint-list #vu8(1 3 7) (quote little))".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect argument count in call (bytevector->sint-list #vu8(1 253 7) (quote big) 1 0)".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: unrecognized endianness spam".
|
|
--- 3822,3830 ----
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: invalid size 0".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: invalid size 1.0".
|
|
bytevector.mo:Expected error in mat uint-list->bytevector: "uint-list->bytevector: invalid size "oops"".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect number of arguments 0 to #<procedure bytevector->sint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect number of arguments 2 to #<procedure bytevector->sint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect number of arguments 4 to #<procedure bytevector->sint-list>".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: unrecognized endianness spam".
|
|
***************
|
|
*** 3844,3852 ****
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: bytevector length 12 is not a multiple of size 10".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: bytevector length 12 is not a multiple of size 11".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: bytevector length 12 is not a multiple of size 50".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect argument count in call (bytevector->uint-list)".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect argument count in call (bytevector->uint-list #vu8(1 3 7) (quote little))".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect argument count in call (bytevector->uint-list #vu8(1 253 7) (quote big) 1 0)".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: unrecognized endianness spam".
|
|
--- 3844,3852 ----
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: bytevector length 12 is not a multiple of size 10".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: bytevector length 12 is not a multiple of size 11".
|
|
bytevector.mo:Expected error in mat bytevector->sint-list: "bytevector->sint-list: bytevector length 12 is not a multiple of size 50".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect number of arguments 0 to #<procedure bytevector->uint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect number of arguments 2 to #<procedure bytevector->uint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect number of arguments 4 to #<procedure bytevector->uint-list>".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: #(a b c) is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: unrecognized endianness spam".
|
|
***************
|
|
*** 3866,3874 ****
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: bytevector length 12 is not a multiple of size 10".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: bytevector length 12 is not a multiple of size 11".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: bytevector length 12 is not a multiple of size 50".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect argument count in call (bytevector=?)".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect argument count in call (bytevector=? #vu8())".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect argument count in call (bytevector=? #vu8() #vu8() #vu8())".
|
|
bytevector.mo:Expected error in mat bytevector=?: "bytevector=?: a is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector=?: "bytevector=?: "a" is not a bytevector".
|
|
bytevector.mo:Expected error in mat tspl/csug-examples: "invalid endianness "spam"".
|
|
--- 3866,3874 ----
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: bytevector length 12 is not a multiple of size 10".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: bytevector length 12 is not a multiple of size 11".
|
|
bytevector.mo:Expected error in mat bytevector->uint-list: "bytevector->uint-list: bytevector length 12 is not a multiple of size 50".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect number of arguments 0 to #<procedure bytevector=?>".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect number of arguments 1 to #<procedure bytevector=?>".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect number of arguments 3 to #<procedure bytevector=?>".
|
|
bytevector.mo:Expected error in mat bytevector=?: "bytevector=?: a is not a bytevector".
|
|
bytevector.mo:Expected error in mat bytevector=?: "bytevector=?: "a" is not a bytevector".
|
|
bytevector.mo:Expected error in mat tspl/csug-examples: "invalid endianness "spam"".
|
|
***************
|
|
*** 3974,3994 ****
|
|
bytevector.mo:Expected error in mat bytevector-compress: "bytevector-uncompress: invalid data in source bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-compress: "bytevector-uncompress: bytevector #vu8(255 255 255 255 255 255 ...) claims invalid uncompressed size <int>".
|
|
profile.mo:Expected error in mat compile-profile: "compile-profile: invalid mode src [must be #f, #t, source, or block]".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect argument count in call (profile-dump (quote ()))".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect argument count in call (profile-clear (quote ()))".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect argument count in call (profile-dump-list #t (quote ()) 3)".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump 17".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump (17)".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump ((a . 17))".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump ((#<source abc[0:3]> . q))".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect argument count in call (profile-dump-html "" (quote ()) 3)".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: (prefix) is not a string".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump 17".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump (17)".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump ((a . 17))".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump ((#<source abc[0:3]> . q))".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect argument count in call (profile-dump-data)".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect argument count in call (profile-dump-data "profile.data" (quote ()) (quote q))".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-data: #t is not a string".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-data: invalid dump 17".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-data: invalid dump (17)".
|
|
--- 3974,3994 ----
|
|
bytevector.mo:Expected error in mat bytevector-compress: "bytevector-uncompress: invalid data in source bytevector #vu8(0 0 0 0 0 0 ...)".
|
|
bytevector.mo:Expected error in mat bytevector-compress: "bytevector-uncompress: bytevector #vu8(255 255 255 255 255 255 ...) claims invalid uncompressed size <int>".
|
|
profile.mo:Expected error in mat compile-profile: "compile-profile: invalid mode src [must be #f, #t, source, or block]".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 1 to #<procedure profile-dump>".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 1 to #<procedure profile-clear>".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 3 to #<procedure profile-dump-list>".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump 17".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump (17)".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump ((a . 17))".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-list: invalid dump ((#<source abc[0:3]> . q))".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 3 to #<procedure profile-dump-html>".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: (prefix) is not a string".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump 17".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump (17)".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump ((a . 17))".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-html: invalid dump ((#<source abc[0:3]> . q))".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 0 to #<procedure profile-dump-data>".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 3 to #<procedure profile-dump-data>".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-data: #t is not a string".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-data: invalid dump 17".
|
|
profile.mo:Expected error in mat compile-profile: "profile-dump-data: invalid dump (17)".
|
|
***************
|
|
*** 4010,4021 ****
|
|
profile.mo:Expected error in mat profile-form: "profile subform is not a source object 3".
|
|
misc.mo:Expected error in mat compiler1: "variable i-am-not-bound is not bound".
|
|
misc.mo:Expected error in mat compiler1: "attempt to apply non-procedure oops".
|
|
! misc.mo:Expected error in mat compiler1: "incorrect argument count in call (g (list))".
|
|
misc.mo:Expected error in mat compiler1: "incorrect argument count in call ((begin (quote foo) a))".
|
|
misc.mo:Expected error in mat compiler2: "+: a is not a number".
|
|
misc.mo:Expected error in mat compiler2: "incorrect argument count in call (f 3 4)".
|
|
! misc.mo:Expected error in mat compiler2: "incorrect argument count in call (car 1 2)".
|
|
! misc.mo:Expected error in mat compiler2: "incorrect argument count in call (cons 1 2 3)".
|
|
misc.mo:Expected error in mat compiler3: "incorrect argument count in call (consumer 1 2) at line 3, char 19 of testfile.ss".
|
|
misc.mo:Expected error in mat compiler3: "incorrect argument count in call (consumer 1 2)".
|
|
misc.mo:Expected error in mat compiler3: "variable goto is not bound".
|
|
--- 4010,4021 ----
|
|
profile.mo:Expected error in mat profile-form: "profile subform is not a source object 3".
|
|
misc.mo:Expected error in mat compiler1: "variable i-am-not-bound is not bound".
|
|
misc.mo:Expected error in mat compiler1: "attempt to apply non-procedure oops".
|
|
! misc.mo:Expected error in mat compiler1: "incorrect argument count in call (g (($top-level-value (...))))".
|
|
misc.mo:Expected error in mat compiler1: "incorrect argument count in call ((begin (quote foo) a))".
|
|
misc.mo:Expected error in mat compiler2: "+: a is not a number".
|
|
misc.mo:Expected error in mat compiler2: "incorrect argument count in call (f 3 4)".
|
|
! misc.mo:Expected error in mat compiler2: "incorrect number of arguments 2 to #<procedure car>".
|
|
! misc.mo:Expected error in mat compiler2: "incorrect number of arguments 3 to #<procedure cons>".
|
|
misc.mo:Expected error in mat compiler3: "incorrect argument count in call (consumer 1 2) at line 3, char 19 of testfile.ss".
|
|
misc.mo:Expected error in mat compiler3: "incorrect argument count in call (consumer 1 2)".
|
|
misc.mo:Expected error in mat compiler3: "variable goto is not bound".
|
|
***************
|
|
*** 4113,4119 ****
|
|
misc.mo:Expected error in mat $fasl-file-equal?: "$fasl-file-equal?: failed for probably-does-not-exist: no such file or directory".
|
|
misc.mo:Expected error in mat $fasl-file-equal?: "$fasl-file-equal?: failed for probably-does-not-exist: no such file or directory".
|
|
misc.mo:Expected error in mat $fasl-file-equal?: "$fasl-file-equal?: record comparison failed while comparing testfile-fatfib1.so and testfile-fatfib3.so within fasl entry 4".
|
|
! misc.mo:Expected error in mat cost-center: "incorrect argument count in call (make-cost-center (quote foo))".
|
|
misc.mo:Expected error in mat cost-center: "with-cost-center: foo is not a cost center".
|
|
misc.mo:Expected error in mat cost-center: "with-cost-center: bar is not a procedure".
|
|
misc.mo:Expected error in mat cost-center: "cost-center-instruction-count: 5 is not a cost center".
|
|
--- 4113,4119 ----
|
|
misc.mo:Expected error in mat $fasl-file-equal?: "$fasl-file-equal?: failed for probably-does-not-exist: no such file or directory".
|
|
misc.mo:Expected error in mat $fasl-file-equal?: "$fasl-file-equal?: failed for probably-does-not-exist: no such file or directory".
|
|
misc.mo:Expected error in mat $fasl-file-equal?: "$fasl-file-equal?: record comparison failed while comparing testfile-fatfib1.so and testfile-fatfib3.so within fasl entry 4".
|
|
! misc.mo:Expected error in mat cost-center: "incorrect number of arguments 1 to #<procedure make-cost-center>".
|
|
misc.mo:Expected error in mat cost-center: "with-cost-center: foo is not a cost center".
|
|
misc.mo:Expected error in mat cost-center: "with-cost-center: bar is not a procedure".
|
|
misc.mo:Expected error in mat cost-center: "cost-center-instruction-count: 5 is not a cost center".
|
|
***************
|
|
*** 4167,4174 ****
|
|
misc.mo:Expected error in mat apropos: "apropos: 3 is not a symbol or string".
|
|
misc.mo:Expected error in mat apropos: "apropos: (hit me) is not a symbol or string".
|
|
misc.mo:Expected error in mat apropos: "apropos-list: b is not an environment".
|
|
! misc.mo:Expected error in mat apropos: "incorrect argument count in call (apropos (quote a) (quote b) (quote c))".
|
|
! misc.mo:Expected error in mat apropos: "incorrect argument count in call (apropos)".
|
|
misc.mo:Expected error in mat apropos: "variable $apropos-unbound1 is not bound".
|
|
misc.mo:Expected error in mat apropos: "variable $apropos-unbound2 is not bound".
|
|
misc.mo:Expected error in mat simplify-if: "textual-port?: a is not a port".
|
|
--- 4167,4174 ----
|
|
misc.mo:Expected error in mat apropos: "apropos: 3 is not a symbol or string".
|
|
misc.mo:Expected error in mat apropos: "apropos: (hit me) is not a symbol or string".
|
|
misc.mo:Expected error in mat apropos: "apropos-list: b is not an environment".
|
|
! misc.mo:Expected error in mat apropos: "incorrect number of arguments 3 to #<procedure apropos>".
|
|
! misc.mo:Expected error in mat apropos: "incorrect number of arguments 0 to #<procedure apropos>".
|
|
misc.mo:Expected error in mat apropos: "variable $apropos-unbound1 is not bound".
|
|
misc.mo:Expected error in mat apropos: "variable $apropos-unbound2 is not bound".
|
|
misc.mo:Expected error in mat simplify-if: "textual-port?: a is not a port".
|
|
***************
|
|
*** 4183,4198 ****
|
|
misc.mo:Expected error in mat pariah: "invalid syntax (pariah)".
|
|
misc.mo:Expected error in mat pariah: "invalid syntax (pariah . 17)".
|
|
misc.mo:Expected error in mat procedure-arity-mask: "procedure-arity-mask: 17 is not a procedure".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (make-wrapper-procedure)".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (make-wrapper-procedure (lambda args args))".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (make-wrapper-procedure (lambda args args) 1)".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: 1 is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: not-a-procedure is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: not-an-exact-integer is not an arity mask".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: 1.0 is not an arity mask".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (make-arity-wrapper-procedure)".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (make-arity-wrapper-procedure (lambda args args))".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (make-arity-wrapper-procedure (lambda args args) 1)".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-arity-wrapper-procedure: 1 is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-arity-wrapper-procedure: not-a-procedure is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-arity-wrapper-procedure: not-an-exact-integer is not an arity mask".
|
|
--- 4183,4198 ----
|
|
misc.mo:Expected error in mat pariah: "invalid syntax (pariah)".
|
|
misc.mo:Expected error in mat pariah: "invalid syntax (pariah . 17)".
|
|
misc.mo:Expected error in mat procedure-arity-mask: "procedure-arity-mask: 17 is not a procedure".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 0 to #<procedure make-wrapper-procedure>".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 1 to #<procedure make-wrapper-procedure>".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 2 to #<procedure make-wrapper-procedure>".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: 1 is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: not-a-procedure is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: not-an-exact-integer is not an arity mask".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-wrapper-procedure: 1.0 is not an arity mask".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 0 to #<procedure make-arity-wrapper-procedure>".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 1 to #<procedure make-arity-wrapper-procedure>".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 2 to #<procedure make-arity-wrapper-procedure>".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-arity-wrapper-procedure: 1 is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-arity-wrapper-procedure: not-a-procedure is not a procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "make-arity-wrapper-procedure: not-an-exact-integer is not an arity mask".
|
|
***************
|
|
*** 4202,4233 ****
|
|
misc.mo:Expected error in mat wrapper-procedure: "wrapper-procedure-data: 1 is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "wrapper-procedure-data: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "wrapper-procedure-data: #<procedure> is not a wrapper procedure".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (set-wrapper-procedure!)".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (set-wrapper-procedure! (make-arity-wrapper-procedure (lambda args args) 1 #f))".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure!: 1 is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure!: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure!: #<procedure> is not a wrapper procedure".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (set-wrapper-procedure-data!)".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect argument count in call (set-wrapper-procedure-data! (make-arity-wrapper-procedure (lambda args args) 1 #f))".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure-data!: 1 is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure-data!: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure-data!: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat phantom-bytevector: "make-phantom-bytevector: -1 is not a valid phantom bytevector length".
|
|
misc.mo:Expected error in mat phantom-bytevector: "make-phantom-bytevector: 1267650600228229401496703205376 is not a valid phantom bytevector length".
|
|
misc.mo:Expected error in mat phantom-bytevector: "make-phantom-bytevector: x is not a valid phantom bytevector length".
|
|
! misc.mo:Expected error in mat immobile: "incorrect argument count in call (box-immobile)".
|
|
! misc.mo:Expected error in mat immobile: "incorrect argument count in call (box-immobile 1 2)".
|
|
! misc.mo:Expected error in mat immobile: "incorrect argument count in call (make-immobile-vector)".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-vector: a is not a valid vector length".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-vector: -10 is not a valid vector length".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-vector: 1267650600228229401496703205376 is not a valid vector length".
|
|
! misc.mo:Expected error in mat immobile: "incorrect argument count in call (make-immobile-vector 10 1 2)".
|
|
! misc.mo:Expected error in mat immobile: "incorrect argument count in call (make-immobile-bytevector)".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-bytevector: a is not a valid bytevector length".
|
|
misc.mo:Expected error in mat immobile: "variable make-immobile-byte-vector is not bound".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-bytevector: 1267650600228229401496703205376 is not a valid bytevector length".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-bytevector: 1024 is not a valid fill value".
|
|
! misc.mo:Expected error in mat immobile: "incorrect argument count in call (make-immobile-bytevector 10 1 2)".
|
|
cp0.mo:Expected error in mat cp0-regression: "attempt to reference undefined variable x".
|
|
cp0.mo:Expected error in mat cp0-regression: "incorrect argument count in call (g)".
|
|
cp0.mo:Expected error in mat cp0-regression: "incorrect argument count in call (cont0 (quote x))".
|
|
--- 4202,4233 ----
|
|
misc.mo:Expected error in mat wrapper-procedure: "wrapper-procedure-data: 1 is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "wrapper-procedure-data: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "wrapper-procedure-data: #<procedure> is not a wrapper procedure".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 0 to #<procedure set-wrapper-procedure!>".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 1 to #<procedure set-wrapper-procedure!>".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure!: 1 is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure!: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure!: #<procedure> is not a wrapper procedure".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 0 to #<procedure set-wrapper-procedure-data!>".
|
|
! misc.mo:Expected error in mat wrapper-procedure: "incorrect number of arguments 1 to #<procedure set-wrapper-procedure-data!>".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure-data!: 1 is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure-data!: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat wrapper-procedure: "set-wrapper-procedure-data!: #<procedure> is not a wrapper procedure".
|
|
misc.mo:Expected error in mat phantom-bytevector: "make-phantom-bytevector: -1 is not a valid phantom bytevector length".
|
|
misc.mo:Expected error in mat phantom-bytevector: "make-phantom-bytevector: 1267650600228229401496703205376 is not a valid phantom bytevector length".
|
|
misc.mo:Expected error in mat phantom-bytevector: "make-phantom-bytevector: x is not a valid phantom bytevector length".
|
|
! misc.mo:Expected error in mat immobile: "incorrect number of arguments 0 to #<procedure box-immobile>".
|
|
! misc.mo:Expected error in mat immobile: "incorrect number of arguments 2 to #<procedure box-immobile>".
|
|
! misc.mo:Expected error in mat immobile: "incorrect number of arguments 0 to #<procedure make-immobile-vector>".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-vector: a is not a valid vector length".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-vector: -10 is not a valid vector length".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-vector: 1267650600228229401496703205376 is not a valid vector length".
|
|
! misc.mo:Expected error in mat immobile: "incorrect number of arguments 3 to #<procedure make-immobile-vector>".
|
|
! misc.mo:Expected error in mat immobile: "incorrect number of arguments 0 to #<procedure make-immobile-bytevector>".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-bytevector: a is not a valid bytevector length".
|
|
misc.mo:Expected error in mat immobile: "variable make-immobile-byte-vector is not bound".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-bytevector: 1267650600228229401496703205376 is not a valid bytevector length".
|
|
misc.mo:Expected error in mat immobile: "make-immobile-bytevector: 1024 is not a valid fill value".
|
|
! misc.mo:Expected error in mat immobile: "incorrect number of arguments 3 to #<procedure make-immobile-bytevector>".
|
|
cp0.mo:Expected error in mat cp0-regression: "attempt to reference undefined variable x".
|
|
cp0.mo:Expected error in mat cp0-regression: "incorrect argument count in call (g)".
|
|
cp0.mo:Expected error in mat cp0-regression: "incorrect argument count in call (cont0 (quote x))".
|
|
***************
|
|
*** 4241,4249 ****
|
|
cp0.mo:Expected error in mat cp0-regression: "condition: #f is not a condition".
|
|
cp0.mo:Expected error in mat cp0-regression: "apply: 0 is not a proper list".
|
|
cp0.mo:Expected error in mat cp0-regression: "apply: 2 is not a proper list".
|
|
! cp0.mo:Expected error in mat expand/optimize: "incorrect argument count in call (expand/optimize)".
|
|
cp0.mo:Expected error in mat expand/optimize: "expand/optimize: b is not an environment".
|
|
! cp0.mo:Expected error in mat expand/optimize: "incorrect argument count in call (expand/optimize (quote a) (quote b) (quote c))".
|
|
cp0.mo:Expected error in mat expand-output: "expand-output: #t is not a textual output port or #f".
|
|
cp0.mo:Expected error in mat expand-output: "expand-output: #<binary output port bytevector> is not a textual output port or #f".
|
|
cp0.mo:Expected error in mat expand/optimize-output: "expand/optimize-output: #t is not a textual output port or #f".
|
|
--- 4241,4249 ----
|
|
cp0.mo:Expected error in mat cp0-regression: "condition: #f is not a condition".
|
|
cp0.mo:Expected error in mat cp0-regression: "apply: 0 is not a proper list".
|
|
cp0.mo:Expected error in mat cp0-regression: "apply: 2 is not a proper list".
|
|
! cp0.mo:Expected error in mat expand/optimize: "incorrect number of arguments 0 to #<procedure expand/optimize>".
|
|
cp0.mo:Expected error in mat expand/optimize: "expand/optimize: b is not an environment".
|
|
! cp0.mo:Expected error in mat expand/optimize: "incorrect number of arguments 3 to #<procedure expand/optimize>".
|
|
cp0.mo:Expected error in mat expand-output: "expand-output: #t is not a textual output port or #f".
|
|
cp0.mo:Expected error in mat expand-output: "expand-output: #<binary output port bytevector> is not a textual output port or #f".
|
|
cp0.mo:Expected error in mat expand/optimize-output: "expand/optimize-output: #t is not a textual output port or #f".
|
|
***************
|
|
*** 4307,4315 ****
|
|
5_6.mo:Expected error in mat list->fxvector: "list->fxvector: (1 2 . 3) is not a proper list".
|
|
5_6.mo:Expected error in mat list->fxvector: "list->fxvector: (1 2 3 2 3 2 ...) is circular".
|
|
5_6.mo:Expected error in mat fxvector->list: "fxvector->list: (a b c) is not an fxvector".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect argument count in call (vector-map)".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect argument count in call (vector-map (quote #()))".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect argument count in call (vector-map +)".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: #() is not a procedure".
|
|
--- 4307,4315 ----
|
|
5_6.mo:Expected error in mat list->fxvector: "list->fxvector: (1 2 . 3) is not a proper list".
|
|
5_6.mo:Expected error in mat list->fxvector: "list->fxvector: (1 2 3 2 3 2 ...) is circular".
|
|
5_6.mo:Expected error in mat fxvector->list: "fxvector->list: (a b c) is not an fxvector".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect number of arguments 0 to #<procedure vector-map>".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect number of arguments 1 to #<procedure vector-map>".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect number of arguments 1 to #<procedure vector-map>".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: #() is not a procedure".
|
|
***************
|
|
*** 4324,4332 ****
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: lengths of input vectors #() and #(x) differ".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: lengths of input vectors #(y) and #() differ".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: lengths of input vectors #(y) and #() differ".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect argument count in call (vector-for-each)".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect argument count in call (vector-for-each (quote #()))".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect argument count in call (vector-for-each +)".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: #() is not a procedure".
|
|
--- 4324,4332 ----
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: lengths of input vectors #() and #(x) differ".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: lengths of input vectors #(y) and #() differ".
|
|
5_6.mo:Expected error in mat vector-map: "vector-map: lengths of input vectors #(y) and #() differ".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect number of arguments 0 to #<procedure vector-for-each>".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect number of arguments 1 to #<procedure vector-for-each>".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect number of arguments 1 to #<procedure vector-for-each>".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: #() is not a procedure".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: #() is not a procedure".
|
|
***************
|
|
*** 4341,4358 ****
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: lengths of input vectors #() and #(x) differ".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: lengths of input vectors #(y) and #() differ".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: lengths of input vectors #(y) and #() differ".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect argument count in call (vector-sort)".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect argument count in call (vector-sort >)".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect argument count in call (vector-sort (quote #(a b c)))".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect argument count in call (vector-sort > (quote #(1 2 3)) #t)".
|
|
5_6.mo:Expected error in mat vector-sort: "vector-sort: 3 is not a vector".
|
|
5_6.mo:Expected error in mat vector-sort: "vector-sort: (1 2 3) is not a vector".
|
|
5_6.mo:Expected error in mat vector-sort: "vector-sort: #(a b c) is not a procedure".
|
|
5_6.mo:Expected error in mat vector-sort: ">: b is not a real number".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect argument count in call (vector-sort!)".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect argument count in call (vector-sort! >)".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect argument count in call (vector-sort! (quote #(a b c)))".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect argument count in call (vector-sort! > (quote #(1 2 3)) #t)".
|
|
5_6.mo:Expected error in mat vector-sort!: "vector-sort!: 3 is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-sort!: "vector-sort!: (1 2 3) is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-sort!: "vector-sort!: #(a b c) is not a procedure".
|
|
--- 4341,4358 ----
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: lengths of input vectors #() and #(x) differ".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: lengths of input vectors #(y) and #() differ".
|
|
5_6.mo:Expected error in mat vector-for-each: "vector-for-each: lengths of input vectors #(y) and #() differ".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments 0 to #<procedure vector-sort>".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments 1 to #<procedure vector-sort>".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments 1 to #<procedure vector-sort>".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments 3 to #<procedure vector-sort>".
|
|
5_6.mo:Expected error in mat vector-sort: "vector-sort: 3 is not a vector".
|
|
5_6.mo:Expected error in mat vector-sort: "vector-sort: (1 2 3) is not a vector".
|
|
5_6.mo:Expected error in mat vector-sort: "vector-sort: #(a b c) is not a procedure".
|
|
5_6.mo:Expected error in mat vector-sort: ">: b is not a real number".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments 0 to #<procedure vector-sort!>".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments 1 to #<procedure vector-sort!>".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments 1 to #<procedure vector-sort!>".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments 3 to #<procedure vector-sort!>".
|
|
5_6.mo:Expected error in mat vector-sort!: "vector-sort!: 3 is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-sort!: "vector-sort!: (1 2 3) is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-sort!: "vector-sort!: #(a b c) is not a procedure".
|
|
***************
|
|
*** 4363,4371 ****
|
|
5_6.mo:Expected error in mat vector->immutable-vector: "vector-sort!: #(1 2 3) is not a mutable vector".
|
|
5_6.mo:Expected error in mat fxvector->immutable-fxvector: "fxvector-set!: #vfx(1 2 3) is not a mutable fxvector".
|
|
5_6.mo:Expected error in mat fxvector->immutable-fxvector: "fxvector-fill!: #vfx(1 2 3) is not a mutable fxvector".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect argument count in call (vector-cas! vec1)".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect argument count in call (vector-cas! vec1 1)".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect argument count in call (vector-cas! vec1 1 2)".
|
|
5_6.mo:Expected error in mat vector-cas!: "vector-cas!: 1 is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-cas!: "vector-cas!: #(4 5 3) is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-cas!: "vector-cas!: #(4 5 3) is not a valid index for #(4 5 3)".
|
|
--- 4363,4371 ----
|
|
5_6.mo:Expected error in mat vector->immutable-vector: "vector-sort!: #(1 2 3) is not a mutable vector".
|
|
5_6.mo:Expected error in mat fxvector->immutable-fxvector: "fxvector-set!: #vfx(1 2 3) is not a mutable fxvector".
|
|
5_6.mo:Expected error in mat fxvector->immutable-fxvector: "fxvector-fill!: #vfx(1 2 3) is not a mutable fxvector".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect number of arguments 1 to #<procedure vector-cas!>".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect number of arguments 2 to #<procedure vector-cas!>".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect number of arguments 3 to #<procedure vector-cas!>".
|
|
5_6.mo:Expected error in mat vector-cas!: "vector-cas!: 1 is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-cas!: "vector-cas!: #(4 5 3) is not a mutable vector".
|
|
5_6.mo:Expected error in mat vector-cas!: "vector-cas!: #(4 5 3) is not a valid index for #(4 5 3)".
|
|
***************
|
|
*** 4422,4429 ****
|
|
5_7.mo:Expected error in mat putprop-getprop: "getprop: 3 is not a symbol".
|
|
5_7.mo:Expected error in mat putprop-getprop: "putprop: "hi" is not a symbol".
|
|
5_7.mo:Expected error in mat putprop-getprop: "property-list: (a b c) is not a symbol".
|
|
! 5_8.mo:Expected error in mat box-cas!: "incorrect argument count in call (box-cas! bx1)".
|
|
! 5_8.mo:Expected error in mat box-cas!: "incorrect argument count in call (box-cas! bx1 1)".
|
|
5_8.mo:Expected error in mat box-cas!: "box-cas!: 1 is not a mutable box".
|
|
5_8.mo:Expected error in mat box-cas!: "box-cas!: #&1 is not a mutable box".
|
|
6.mo:Expected error in mat port-operations: "open-input-file: failed for nonexistent file: no such file or directory".
|
|
--- 4422,4429 ----
|
|
5_7.mo:Expected error in mat putprop-getprop: "getprop: 3 is not a symbol".
|
|
5_7.mo:Expected error in mat putprop-getprop: "putprop: "hi" is not a symbol".
|
|
5_7.mo:Expected error in mat putprop-getprop: "property-list: (a b c) is not a symbol".
|
|
! 5_8.mo:Expected error in mat box-cas!: "incorrect number of arguments 1 to #<procedure box-cas!>".
|
|
! 5_8.mo:Expected error in mat box-cas!: "incorrect number of arguments 2 to #<procedure box-cas!>".
|
|
5_8.mo:Expected error in mat box-cas!: "box-cas!: 1 is not a mutable box".
|
|
5_8.mo:Expected error in mat box-cas!: "box-cas!: #&1 is not a mutable box".
|
|
6.mo:Expected error in mat port-operations: "open-input-file: failed for nonexistent file: no such file or directory".
|
|
***************
|
|
*** 4461,4482 ****
|
|
6.mo:Expected error in mat port-operations: "clear-output-port: not permitted on closed port #<output port testfile.ss>".
|
|
6.mo:Expected error in mat port-operations: "current-output-port: a is not a textual output port".
|
|
6.mo:Expected error in mat port-operations: "current-input-port: a is not a textual input port".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect argument count in call (with-input-from-string)".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect argument count in call (with-input-from-string "a")".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: a is not a string".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: foo is not a procedure".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: #<procedure> is not a string".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: (this too?) is not a string".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect argument count in call (with-input-from-string "a" (lambda () 3) (quote compressed))".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect argument count in call (with-output-to-string)".
|
|
6.mo:Expected error in mat port-operations: "with-output-to-string: "a" is not a procedure".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect argument count in call (with-output-to-string (quote a) (lambda () 3))".
|
|
6.mo:Expected error in mat port-operations: "with-output-to-string: (this too?) is not a procedure".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect argument count in call (eof-object #!eof)".
|
|
6.mo:Expected error in mat port-operations: "read: unexpected end-of-file reading quote at char 0 of #<input port string>".
|
|
6.mo:Expected error in mat port-operations: "read: more than one item found after dot (.) before file-position 15 of #<input port testfile.ss>; the character position might differ".
|
|
6.mo:Expected error in mat port-operations: "read: parenthesized list terminated by bracket before file-position 11 of #<input port testfile.ss>; the character position might differ".
|
|
! 6.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-input-output-file)".
|
|
6.mo:Expected error in mat port-operations1: "open-input-output-file: furball is not a string".
|
|
6.mo:Expected error in mat port-operations1: "open-input-output-file: failed for /probably/not/a/good/path: no such file or directory".
|
|
6.mo:Expected error in mat port-operations1: "open-input-output-file: invalid option compressed".
|
|
--- 4461,4482 ----
|
|
6.mo:Expected error in mat port-operations: "clear-output-port: not permitted on closed port #<output port testfile.ss>".
|
|
6.mo:Expected error in mat port-operations: "current-output-port: a is not a textual output port".
|
|
6.mo:Expected error in mat port-operations: "current-input-port: a is not a textual input port".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 0 to #<procedure with-input-from-string>".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 1 to #<procedure with-input-from-string>".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: a is not a string".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: foo is not a procedure".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: #<procedure> is not a string".
|
|
6.mo:Expected error in mat port-operations: "with-input-from-string: (this too?) is not a string".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 3 to #<procedure with-input-from-string>".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 0 to #<procedure with-output-to-string>".
|
|
6.mo:Expected error in mat port-operations: "with-output-to-string: "a" is not a procedure".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 2 to #<procedure with-output-to-string>".
|
|
6.mo:Expected error in mat port-operations: "with-output-to-string: (this too?) is not a procedure".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 1 to #<procedure eof-object>".
|
|
6.mo:Expected error in mat port-operations: "read: unexpected end-of-file reading quote at char 0 of #<input port string>".
|
|
6.mo:Expected error in mat port-operations: "read: more than one item found after dot (.) before file-position 15 of #<input port testfile.ss>; the character position might differ".
|
|
6.mo:Expected error in mat port-operations: "read: parenthesized list terminated by bracket before file-position 11 of #<input port testfile.ss>; the character position might differ".
|
|
! 6.mo:Expected error in mat port-operations1: "incorrect number of arguments 0 to #<procedure open-input-output-file>".
|
|
6.mo:Expected error in mat port-operations1: "open-input-output-file: furball is not a string".
|
|
6.mo:Expected error in mat port-operations1: "open-input-output-file: failed for /probably/not/a/good/path: no such file or directory".
|
|
6.mo:Expected error in mat port-operations1: "open-input-output-file: invalid option compressed".
|
|
***************
|
|
*** 4485,4491 ****
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: all-the-way is not a valid length".
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: #<input port testfile.ss> is not an output port".
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: animal-crackers is not an output port".
|
|
! 6.mo:Expected error in mat port-operations1: "incorrect argument count in call (truncate-file)".
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: not permitted on closed port #<input/output port testfile.ss>".
|
|
6.mo:Expected error in mat port-operations1: "get-output-string: #<input port string> is not a string output port".
|
|
6.mo:Expected error in mat port-operations1: "get-output-string: #<output port testfile.ss> is not a string output port".
|
|
--- 4485,4491 ----
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: all-the-way is not a valid length".
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: #<input port testfile.ss> is not an output port".
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: animal-crackers is not an output port".
|
|
! 6.mo:Expected error in mat port-operations1: "incorrect number of arguments 0 to #<procedure truncate-file>".
|
|
6.mo:Expected error in mat port-operations1: "truncate-file: not permitted on closed port #<input/output port testfile.ss>".
|
|
6.mo:Expected error in mat port-operations1: "get-output-string: #<input port string> is not a string output port".
|
|
6.mo:Expected error in mat port-operations1: "get-output-string: #<output port testfile.ss> is not a string output port".
|
|
***************
|
|
*** 4502,4509 ****
|
|
6.mo:Expected error in mat string-port-file-position: "file-position: -1 is not a valid position".
|
|
6.mo:Expected error in mat fresh-line: "fresh-line: 3 is not a textual output port".
|
|
6.mo:Expected error in mat fresh-line: "fresh-line: #<input port string> is not a textual output port".
|
|
! 6.mo:Expected error in mat pretty-print: "incorrect argument count in call (pretty-format)".
|
|
! 6.mo:Expected error in mat pretty-print: "incorrect argument count in call (pretty-format (quote foo) (quote x) (quote x))".
|
|
6.mo:Expected error in mat pretty-print: "pretty-format: 3 is not a symbol".
|
|
6.mo:Expected error in mat pretty-print: "pretty-format: invalid format (bad 0 ... ... 0 format)".
|
|
6.mo:Expected warning in mat cp1in-verify-format-warnings: "compile: too few arguments for control string "~a~~~s" in call to format".
|
|
--- 4502,4509 ----
|
|
6.mo:Expected error in mat string-port-file-position: "file-position: -1 is not a valid position".
|
|
6.mo:Expected error in mat fresh-line: "fresh-line: 3 is not a textual output port".
|
|
6.mo:Expected error in mat fresh-line: "fresh-line: #<input port string> is not a textual output port".
|
|
! 6.mo:Expected error in mat pretty-print: "incorrect number of arguments 0 to #<procedure pretty-format>".
|
|
! 6.mo:Expected error in mat pretty-print: "incorrect number of arguments 3 to #<procedure pretty-format>".
|
|
6.mo:Expected error in mat pretty-print: "pretty-format: 3 is not a symbol".
|
|
6.mo:Expected error in mat pretty-print: "pretty-format: invalid format (bad 0 ... ... 0 format)".
|
|
6.mo:Expected warning in mat cp1in-verify-format-warnings: "compile: too few arguments for control string "~a~~~s" in call to format".
|
|
***************
|
|
*** 6987,7018 ****
|
|
io.mo:Expected error in mat port-operations: "put-u8: not permitted on closed port #<binary output port testfile.ss>".
|
|
io.mo:Expected error in mat port-operations: "put-bytevector: not permitted on closed port #<binary output port testfile.ss>".
|
|
io.mo:Expected error in mat port-operations: "flush-output-port: not permitted on closed port #<binary output port testfile.ss>".
|
|
! io.mo:Expected error in mat port-operations: "incorrect argument count in call (eof-object #!eof)".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-file-input-port)".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: furball is not a string".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: () is not a file-options object".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: 17 is not a valid buffer mode".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: wow is not #f or a transcoder".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-file-input-port "testfile.ss" ($record (record-rtd $file-options) 0) (quote block) #f (quote now?))".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option uncompressed".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option truncate".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-file-output-port)".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: furball is not a string".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: (no-create) is not a file-options object".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: 17 is not a valid buffer mode".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: wow is not #f or a transcoder".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-file-output-port "testfile.ss" ($record (record-rtd $file-options) 0) (quote block) #f (quote now?))".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option uncompressed".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option truncate".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-file-input/output-port)".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: furball is not a string".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: (no-create) is not a file-options object".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: 17 is not a valid buffer mode".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: wow is not #f or a transcoder".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (open-file-input/output-port "testfile.ss" ($record (record-rtd $file-options) 0) (quote block) #f (quote now?))".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option uncompressed".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option truncate".
|
|
--- 6987,7018 ----
|
|
io.mo:Expected error in mat port-operations: "put-u8: not permitted on closed port #<binary output port testfile.ss>".
|
|
io.mo:Expected error in mat port-operations: "put-bytevector: not permitted on closed port #<binary output port testfile.ss>".
|
|
io.mo:Expected error in mat port-operations: "flush-output-port: not permitted on closed port #<binary output port testfile.ss>".
|
|
! io.mo:Expected error in mat port-operations: "incorrect number of arguments 1 to #<procedure eof-object>".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 0 to #<procedure open-file-input-port>".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: furball is not a string".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: () is not a file-options object".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: 17 is not a valid buffer mode".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: wow is not #f or a transcoder".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 5 to #<procedure open-file-input-port>".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option uncompressed".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option truncate".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 0 to #<procedure open-file-output-port>".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: furball is not a string".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: (no-create) is not a file-options object".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: 17 is not a valid buffer mode".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: wow is not #f or a transcoder".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 5 to #<procedure open-file-output-port>".
|
|
io.mo:Expected error in mat port-operations1: "open-file-output-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option uncompressed".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option truncate".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 0 to #<procedure open-file-input/output-port>".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: furball is not a string".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: (no-create) is not a file-options object".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: 17 is not a valid buffer mode".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: wow is not #f or a transcoder".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 5 to #<procedure open-file-input/output-port>".
|
|
io.mo:Expected error in mat port-operations1: "open-file-input/output-port: failed for /probably/not/a/good/path: no such file or directory".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option uncompressed".
|
|
io.mo:Expected error in mat port-operations1: "invalid file option truncate".
|
|
***************
|
|
*** 7023,7029 ****
|
|
io.mo:Expected error in mat port-operations1: "set-port-length!: all-the-way is not a valid length".
|
|
io.mo:Expected error in mat port-operations1: "truncate-port: #<binary input port testfile.ss> is not an output port".
|
|
io.mo:Expected error in mat port-operations1: "truncate-port: animal-crackers is not an output port".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect argument count in call (truncate-port)".
|
|
io.mo:Expected error in mat port-operations1: "truncate-port: not permitted on closed port #<binary input/output port testfile.ss>".
|
|
io.mo:Expected error in mat port-operations3: "file-port?: "not a port" is not a port".
|
|
io.mo:Expected error in mat port-operations3: "port-file-descriptor: oops is not a port".
|
|
--- 7023,7029 ----
|
|
io.mo:Expected error in mat port-operations1: "set-port-length!: all-the-way is not a valid length".
|
|
io.mo:Expected error in mat port-operations1: "truncate-port: #<binary input port testfile.ss> is not an output port".
|
|
io.mo:Expected error in mat port-operations1: "truncate-port: animal-crackers is not an output port".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 0 to #<procedure truncate-port>".
|
|
io.mo:Expected error in mat port-operations1: "truncate-port: not permitted on closed port #<binary input/output port testfile.ss>".
|
|
io.mo:Expected error in mat port-operations3: "file-port?: "not a port" is not a port".
|
|
io.mo:Expected error in mat port-operations3: "port-file-descriptor: oops is not a port".
|
|
***************
|
|
*** 7206,7218 ****
|
|
io.mo:Expected error in mat low-level-port-operations: "set-binary-port-output-size!: #vu8(1 2 3) is not a valid size for #<binary output port bytevector>".
|
|
io.mo:Expected error in mat low-level-port-operations: "set-binary-port-output-size!: -1 is not a valid size for #<binary output port bytevector>".
|
|
io.mo:Expected error in mat low-level-port-operations: "set-binary-port-output-size!: 6 is not a valid size for #<binary output port bytevector>".
|
|
! io.mo:Expected error in mat file-buffer-size: "incorrect argument count in call (file-buffer-size 1024 15)".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: shoe is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: 0 is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: -15 is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: <int> is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: 1024.0 is not a positive fixnum".
|
|
! io.mo:Expected error in mat custom-port-buffer-size: "incorrect argument count in call (custom-port-buffer-size 1024 15)".
|
|
io.mo:Expected error in mat custom-port-buffer-size: "custom-port-buffer-size: shoe is not a positive fixnum".
|
|
io.mo:Expected error in mat custom-port-buffer-size: "custom-port-buffer-size: 0 is not a positive fixnum".
|
|
io.mo:Expected error in mat custom-port-buffer-size: "custom-port-buffer-size: -15 is not a positive fixnum".
|
|
--- 7206,7218 ----
|
|
io.mo:Expected error in mat low-level-port-operations: "set-binary-port-output-size!: #vu8(1 2 3) is not a valid size for #<binary output port bytevector>".
|
|
io.mo:Expected error in mat low-level-port-operations: "set-binary-port-output-size!: -1 is not a valid size for #<binary output port bytevector>".
|
|
io.mo:Expected error in mat low-level-port-operations: "set-binary-port-output-size!: 6 is not a valid size for #<binary output port bytevector>".
|
|
! io.mo:Expected error in mat file-buffer-size: "incorrect number of arguments 2 to #<procedure file-buffer-size>".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: shoe is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: 0 is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: -15 is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: <int> is not a positive fixnum".
|
|
io.mo:Expected error in mat file-buffer-size: "file-buffer-size: 1024.0 is not a positive fixnum".
|
|
! io.mo:Expected error in mat custom-port-buffer-size: "incorrect number of arguments 2 to #<procedure custom-port-buffer-size>".
|
|
io.mo:Expected error in mat custom-port-buffer-size: "custom-port-buffer-size: shoe is not a positive fixnum".
|
|
io.mo:Expected error in mat custom-port-buffer-size: "custom-port-buffer-size: 0 is not a positive fixnum".
|
|
io.mo:Expected error in mat custom-port-buffer-size: "custom-port-buffer-size: -15 is not a positive fixnum".
|
|
***************
|
|
*** 7238,7253 ****
|
|
io.mo:Expected error in mat compression: "port-file-compressed!: cannot compress input/output port #<binary input/output port testfile.ss>".
|
|
io.mo:Expected error in mat compression: "port-file-compressed!: #<output port string> is not a file port".
|
|
io.mo:Expected error in mat compression: "port-file-compressed!: cannot compress input/output port #<binary input/output port testfile.ss>".
|
|
! io.mo:Expected error in mat bytevector-input-port: "incorrect argument count in call (open-bytevector-input-port)".
|
|
io.mo:Expected error in mat bytevector-input-port: "open-bytevector-input-port: #(1 2 3 4) is not a bytevector".
|
|
io.mo:Expected error in mat bytevector-input-port: "open-bytevector-input-port: none is not #f or a transcoder".
|
|
! io.mo:Expected error in mat bytevector-input-port: "incorrect argument count in call (open-bytevector-input-port #vu8(1 2 3 4) #f (quote none))".
|
|
io.mo:Expected error in mat bytevector-input-port: "set-port-position!: -1 is not a valid position".
|
|
io.mo:Expected error in mat bytevector-input-port: "set-port-position!: failed for position 5 on #<binary input port bytevector>: out of range".
|
|
io.mo:Expected error in mat bytevector-input-port: "invalid buffer mode bar".
|
|
io.mo:Expected error in mat bytevector-input-port: "invalid buffer mode (quote none)".
|
|
io.mo:Expected error in mat bytevector-output-port: "open-bytevector-output-port: oops is not #f or a transcoder".
|
|
! io.mo:Expected error in mat bytevector-output-port: "incorrect argument count in call (open-bytevector-output-port #f (quote none))".
|
|
io.mo:Expected error in mat custom-binary-ports: "unget-u8: cannot unget 255 on #<binary input port foo>".
|
|
io.mo:Expected error in mat custom-binary-ports: "put-u8: #<binary input port foo> is not a binary output port".
|
|
io.mo:Expected error in mat custom-binary-ports: "port-length: #<binary input port foo> does not support operation".
|
|
--- 7238,7253 ----
|
|
io.mo:Expected error in mat compression: "port-file-compressed!: cannot compress input/output port #<binary input/output port testfile.ss>".
|
|
io.mo:Expected error in mat compression: "port-file-compressed!: #<output port string> is not a file port".
|
|
io.mo:Expected error in mat compression: "port-file-compressed!: cannot compress input/output port #<binary input/output port testfile.ss>".
|
|
! io.mo:Expected error in mat bytevector-input-port: "incorrect number of arguments 0 to #<procedure open-bytevector-input-port>".
|
|
io.mo:Expected error in mat bytevector-input-port: "open-bytevector-input-port: #(1 2 3 4) is not a bytevector".
|
|
io.mo:Expected error in mat bytevector-input-port: "open-bytevector-input-port: none is not #f or a transcoder".
|
|
! io.mo:Expected error in mat bytevector-input-port: "incorrect number of arguments 3 to #<procedure open-bytevector-input-port>".
|
|
io.mo:Expected error in mat bytevector-input-port: "set-port-position!: -1 is not a valid position".
|
|
io.mo:Expected error in mat bytevector-input-port: "set-port-position!: failed for position 5 on #<binary input port bytevector>: out of range".
|
|
io.mo:Expected error in mat bytevector-input-port: "invalid buffer mode bar".
|
|
io.mo:Expected error in mat bytevector-input-port: "invalid buffer mode (quote none)".
|
|
io.mo:Expected error in mat bytevector-output-port: "open-bytevector-output-port: oops is not #f or a transcoder".
|
|
! io.mo:Expected error in mat bytevector-output-port: "incorrect number of arguments 2 to #<procedure open-bytevector-output-port>".
|
|
io.mo:Expected error in mat custom-binary-ports: "unget-u8: cannot unget 255 on #<binary input port foo>".
|
|
io.mo:Expected error in mat custom-binary-ports: "put-u8: #<binary input port foo> is not a binary output port".
|
|
io.mo:Expected error in mat custom-binary-ports: "port-length: #<binary input port foo> does not support operation".
|
|
***************
|
|
*** 7319,7334 ****
|
|
io.mo:Expected error in mat current-ports: "console-output-port: #<input port string> is not a textual output port".
|
|
io.mo:Expected error in mat current-ports: "console-error-port: #<input port string> is not a textual output port".
|
|
io.mo:Expected error in mat current-transcoder: "current-transcoder: #<output port string> is not a transcoder".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect argument count in call (get-datum)".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect argument count in call (get-datum (current-input-port) (current-input-port))".
|
|
io.mo:Expected error in mat get/put-datum: "get-datum: #<output port string> is not a textual input port".
|
|
io.mo:Expected error in mat get/put-datum: "get-datum: #<binary input port bytevector> is not a textual input port".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect argument count in call (put-datum)".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect argument count in call (put-datum (current-output-port))".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect argument count in call (put-datum (current-output-port) (quote a) (quote a))".
|
|
io.mo:Expected error in mat get/put-datum: "put-datum: #<input port string> is not a textual output port".
|
|
io.mo:Expected error in mat get/put-datum: "put-datum: #<binary output port bytevector> is not a textual output port".
|
|
! io.mo:Expected error in mat utf-16-codec: "incorrect argument count in call (utf-16-codec #f)".
|
|
io.mo:Expected error in mat utf-16-codec: "utf-16-codec: invalid endianness #f".
|
|
io.mo:Expected error in mat to-fold-or-not-to-fold: "get-datum: invalid character name #\newLine at char 0 of #<input port string>".
|
|
io.mo:Expected error in mat to-fold-or-not-to-fold: "get-datum: invalid character name #\newLine at char 15 of #<input port string>".
|
|
--- 7319,7334 ----
|
|
io.mo:Expected error in mat current-ports: "console-output-port: #<input port string> is not a textual output port".
|
|
io.mo:Expected error in mat current-ports: "console-error-port: #<input port string> is not a textual output port".
|
|
io.mo:Expected error in mat current-transcoder: "current-transcoder: #<output port string> is not a transcoder".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 0 to #<procedure get-datum>".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 2 to #<procedure get-datum>".
|
|
io.mo:Expected error in mat get/put-datum: "get-datum: #<output port string> is not a textual input port".
|
|
io.mo:Expected error in mat get/put-datum: "get-datum: #<binary input port bytevector> is not a textual input port".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 0 to #<procedure put-datum>".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 1 to #<procedure put-datum>".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 3 to #<procedure put-datum>".
|
|
io.mo:Expected error in mat get/put-datum: "put-datum: #<input port string> is not a textual output port".
|
|
io.mo:Expected error in mat get/put-datum: "put-datum: #<binary output port bytevector> is not a textual output port".
|
|
! io.mo:Expected error in mat utf-16-codec: "incorrect number of arguments 1 to #<procedure utf-16-codec>".
|
|
io.mo:Expected error in mat utf-16-codec: "utf-16-codec: invalid endianness #f".
|
|
io.mo:Expected error in mat to-fold-or-not-to-fold: "get-datum: invalid character name #\newLine at char 0 of #<input port string>".
|
|
io.mo:Expected error in mat to-fold-or-not-to-fold: "get-datum: invalid character name #\newLine at char 15 of #<input port string>".
|
|
***************
|
|
*** 7500,7506 ****
|
|
7.mo:Expected error in mat eval-when: "invalid syntax visit-x".
|
|
7.mo:Expected error in mat eval-when: "invalid syntax revisit-x".
|
|
7.mo:Expected error in mat compile-whole-program: "compile-whole-program: failed for nosuchfile.wpo: no such file or directory".
|
|
! 7.mo:Expected error in mat compile-whole-program: "incorrect argument count in call (compile-whole-program "testfile-wpo-ab.wpo")".
|
|
7.mo:Expected error in mat compile-whole-program: "separate-eval: Exception in environment: attempt to import invisible library (testfile-wpo-lib)
|
|
7.mo:Expected error in mat compile-whole-program: "separate-eval: Exception: library (testfile-wpo-a4) not found
|
|
7.mo:Expected error in mat compile-whole-program: "separate-eval: Exception: library (testfile-wpo-c4) not found
|
|
--- 7500,7506 ----
|
|
7.mo:Expected error in mat eval-when: "invalid syntax visit-x".
|
|
7.mo:Expected error in mat eval-when: "invalid syntax revisit-x".
|
|
7.mo:Expected error in mat compile-whole-program: "compile-whole-program: failed for nosuchfile.wpo: no such file or directory".
|
|
! 7.mo:Expected error in mat compile-whole-program: "incorrect number of arguments 1 to #<procedure compile-whole-program>".
|
|
7.mo:Expected error in mat compile-whole-program: "separate-eval: Exception in environment: attempt to import invisible library (testfile-wpo-lib)
|
|
7.mo:Expected error in mat compile-whole-program: "separate-eval: Exception: library (testfile-wpo-a4) not found
|
|
7.mo:Expected error in mat compile-whole-program: "separate-eval: Exception: library (testfile-wpo-c4) not found
|
|
***************
|
|
*** 7566,7592 ****
|
|
7.mo:Expected error in mat concatenate-object-files: "separate-eval: Exception in verify-loadability: cannot find object file for library (testfile-cof1A)
|
|
7.mo:Expected error in mat concatenate-object-files: "separate-eval: Exception in verify-loadability: cannot find object file for library (testfile-cof1B)
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (top-level-bound?)".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: 45 is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (top-level-mutable?)".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: 45 is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-value: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (top-level-value)".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-value: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-value: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "set-top-level-value!: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (set-top-level-value!)".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (set-top-level-value! 15)".
|
|
7.mo:Expected error in mat top-level-value-functions: "set-top-level-value!: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "set-top-level-value!: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "define-top-level-value: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (define-top-level-value)".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect argument count in call (define-top-level-value 15)".
|
|
7.mo:Expected error in mat top-level-value-functions: "define-top-level-value: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "define-top-level-value: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "variable i-am-not-bound-i-hope is not bound".
|
|
--- 7566,7592 ----
|
|
7.mo:Expected error in mat concatenate-object-files: "separate-eval: Exception in verify-loadability: cannot find object file for library (testfile-cof1A)
|
|
7.mo:Expected error in mat concatenate-object-files: "separate-eval: Exception in verify-loadability: cannot find object file for library (testfile-cof1B)
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 0 to #<procedure top-level-bound?>".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: 45 is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-bound?: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 0 to #<procedure top-level-mutable?>".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: 45 is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-mutable?: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-value: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 0 to #<procedure top-level-value>".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-value: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "top-level-value: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "set-top-level-value!: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 0 to #<procedure set-top-level-value!>".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 1 to #<procedure set-top-level-value!>".
|
|
7.mo:Expected error in mat top-level-value-functions: "set-top-level-value!: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "set-top-level-value!: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "define-top-level-value: "hello" is not a symbol".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 0 to #<procedure define-top-level-value>".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 1 to #<procedure define-top-level-value>".
|
|
7.mo:Expected error in mat top-level-value-functions: "define-top-level-value: hello is not an environment".
|
|
7.mo:Expected error in mat top-level-value-functions: "define-top-level-value: #<environment *scheme*> is not a symbol".
|
|
7.mo:Expected error in mat top-level-value-functions: "variable i-am-not-bound-i-hope is not bound".
|
|
***************
|
|
*** 7901,7907 ****
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 1 to #<procedure>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 1 to #<procedure>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 3 to #<procedure>".
|
|
! record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 3 to #<procedure constructor>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 4 to #<procedure constructor>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "make-record-constructor-descriptor: record constructor descriptor #<record constructor descriptor> is not for parent of record type #<record type grand-child>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "make-record-type-descriptor: cannot extend sealed record type #<record type bar>".
|
|
--- 7901,7907 ----
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 1 to #<procedure>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 1 to #<procedure>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 3 to #<procedure>".
|
|
! record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 4 to #<procedure constructor>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "incorrect number of arguments 4 to #<procedure constructor>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "make-record-constructor-descriptor: record constructor descriptor #<record constructor descriptor> is not for parent of record type #<record type grand-child>".
|
|
record.mo:Expected error in mat r6rs-records-procedural: "make-record-type-descriptor: cannot extend sealed record type #<record type bar>".
|
|
***************
|
|
*** 7991,8105 ****
|
|
hash.mo:Expected error in mat old-hash-table: "hash-table-for-each: ((a . b)) is not an eq hashtable".
|
|
hash.mo:Expected error in mat old-hash-table: "incorrect number of arguments 2 to #<procedure>".
|
|
hash.mo:Expected error in mat old-hash-table: "incorrect number of arguments 2 to #<procedure>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (make-eq-hashtable 3 #t)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eq-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eq-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eq-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (make-hashtable)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (make-hashtable equal-hash)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (make-hashtable equal-hash equal? 45 53)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: a is not a procedure".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: a is not a procedure".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: invalid size argument a".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: invalid size argument -45".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: invalid size argument 45.0".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (make-eqv-hashtable 3 #t)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eqv-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eqv-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eqv-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable?)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable? $ht 3)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (eq-hashtable?)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (eq-hashtable? $ht 3)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-mutable?: #(0 0 0) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-mutable?)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-mutable? $ht 3)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-size)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-size $ht 3)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-size: hello is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref $ht (quote a))".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref $ht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-ref: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-contains?)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-contains? $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-contains? $ht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-contains?: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-set!)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-set! $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-set! $ht (quote a))".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-set! $ht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-set!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-set!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-update!)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-update! $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-update! $ht (quote a) values)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-update! $ht (quote a) values (quote c) (quote d))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-update!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-update!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-update!: "not a procedure" is not a procedure".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-cell)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-cell $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-cell $ht (quote a))".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-cell $ht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cell: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref-cell)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref-cell $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref-cell $ht (quote a) (quote b))".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ref-cell (quote (hash . table)) (quote a) (quote b))".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-delete!)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-delete! $ht)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-delete! $ht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-delete!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-delete!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-copy)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-copy $ht #t 17)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-copy: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-clear!)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-clear! $ht 17 (quote foo))".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: invalid size argument #t".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-keys)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-keys $ht 72 43)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-keys)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-keys $ht 72)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-values)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-values $ht 72 43)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-values: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-values: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-values: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-entries)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-entries $ht 72 43)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-entries)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-entries $ht 72)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-cells)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-cells $ht 72 43)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-size: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cells: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cells: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-hash-function)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-hash-function $ht $ht)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-hash-function: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-equivalence-function)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-equivalence-function $ht $ht)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-equivalence-function: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-weak?)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-weak? $ht 3)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-weak?: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ephemeron?)".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect argument count in call (hashtable-ephemeron? $ht 3)".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-ephemeron?: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-ref: invalid hash-function #<procedure> return value "oops" for any".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-ref: invalid hash-function #<procedure> return value 3.5 for any".
|
|
--- 7991,8105 ----
|
|
hash.mo:Expected error in mat old-hash-table: "hash-table-for-each: ((a . b)) is not an eq hashtable".
|
|
hash.mo:Expected error in mat old-hash-table: "incorrect number of arguments 2 to #<procedure>".
|
|
hash.mo:Expected error in mat old-hash-table: "incorrect number of arguments 2 to #<procedure>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure make-eq-hashtable>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eq-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eq-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eq-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure make-hashtable>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure make-hashtable>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 4 to #<procedure make-hashtable>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: a is not a procedure".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: a is not a procedure".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: invalid size argument a".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: invalid size argument -45".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-hashtable: invalid size argument 45.0".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure make-eqv-hashtable>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eqv-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eqv-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat hashtable-arguments: "make-eqv-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable?>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-mutable?: #(0 0 0) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-mutable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-mutable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-size>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-size>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-size: hello is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-ref>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-ref>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-ref>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 4 to #<procedure hashtable-ref>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-ref: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-contains?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-contains?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-contains?>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-contains?: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-set!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-set!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-set!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 4 to #<procedure hashtable-set!>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-set!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-set!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-update!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-update!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-update!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 5 to #<procedure hashtable-update!>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-update!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-update!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-update!: "not a procedure" is not a procedure".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 4 to #<procedure hashtable-cell>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cell: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-delete!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 1 to #<procedure hashtable-delete!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-delete!>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-delete!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-delete!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-copy>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-copy>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-copy: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-clear!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-clear!>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-clear!: invalid size argument #t".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-keys>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-keys>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-keys>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-keys>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-keys: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-values>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-values>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-values: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-values: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-values: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-entries>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-entries>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-entries>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-entries>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-entries: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-cells>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 3 to #<procedure hashtable-cells>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-size: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cells: -79 is not a valid length".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cells: not-an-unsigned-integer is not a valid length".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-hash-function>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-hash-function>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-hash-function: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-equivalence-function>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-equivalence-function>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-equivalence-function: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-weak?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-weak?>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-weak?: (hash . table) is not a hashtable".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 0 to #<procedure hashtable-ephemeron?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 2 to #<procedure hashtable-ephemeron?>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-ephemeron?: (hash . table) is not a hashtable".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-ref: invalid hash-function #<procedure> return value "oops" for any".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-ref: invalid hash-function #<procedure> return value 3.5 for any".
|
|
***************
|
|
*** 8122,8244 ****
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-delete!: invalid hash-function #<procedure> return value "oops" for any".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-delete!: invalid hash-function #<procedure> return value 3.5 for any".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-delete!: invalid hash-function #<procedure> return value 1+2i for any".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (make-weak-eq-hashtable 3 #t)".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-weak-eq-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-weak-eq-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-weak-eq-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (make-ephemeron-eq-hashtable 3 #t)".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-ephemeron-eq-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-ephemeron-eq-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-ephemeron-eq-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref $wht (quote a))".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref $wht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-ref: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-contains?)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-contains? $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-contains? $wht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-contains?: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-set!)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-set! $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-set! $wht (quote a))".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-set! $wht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-set!: (hash . table) is not an eq hashtable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-set!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-update!)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-update! $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-update! $wht (quote a) values)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-update! $wht (quote a) values (quote c) (quote d))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-update!: (hash . table) is not an eq hashtable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-update!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-update!: "not a procedure" is not a procedure".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-delete!)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-delete! $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-delete! $wht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-delete!: (hash . table) is not an eq hashtable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-delete!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-cell)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-cell $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-cell $wht (quote a))".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-cell $wht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-cell: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref-cell)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref-cell $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ref-cell $wht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-ref-cell: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-try-atomic-cell)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-try-atomic-cell $wht)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-try-atomic-cell $wht (quote a))".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-try-atomic-cell $wht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-try-atomic-cell: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-weak?)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-weak? $ht 3)".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-weak?: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ephemeron?)".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect argument count in call (eq-hashtable-ephemeron? $ht 3)".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-ephemeron?: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref $symht (quote a))".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref $symht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-contains?)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-contains? $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-contains? $symht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-contains?: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-contains?: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-contains?: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-set!)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-set! $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-set! $symht (quote a))".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-set! $symht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: #<hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-update!)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-update! $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-update! $symht (quote a) values)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-update! $symht (quote a) values (quote c) (quote d))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: #<hashtable> is not mutable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: "not a procedure" is not a procedure".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-delete!)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-delete! $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-delete! $symht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: #<hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-cell)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-cell $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-cell $symht (quote a))".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-cell $symht (quote a) (quote b) (quote c))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-cell: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-cell: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-cell: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref-cell)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref-cell $symht)".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect argument count in call (symbol-hashtable-ref-cell $symht (quote a) (quote b))".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref-cell: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref-cell: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref-cell: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat eqv-hashtable-arguments: "incorrect argument count in call (make-weak-eqv-hashtable 3 #t)".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-weak-eqv-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-weak-eqv-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-weak-eqv-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat eqv-hashtable-arguments: "incorrect argument count in call (make-ephemeron-eqv-hashtable 3 #t)".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-ephemeron-eqv-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-ephemeron-eqv-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-ephemeron-eqv-hashtable: invalid size argument #f".
|
|
--- 8122,8244 ----
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-delete!: invalid hash-function #<procedure> return value "oops" for any".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-delete!: invalid hash-function #<procedure> return value 3.5 for any".
|
|
hash.mo:Expected error in mat hash-return-value: "hashtable-delete!: invalid hash-function #<procedure> return value 1+2i for any".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure make-weak-eq-hashtable>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-weak-eq-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-weak-eq-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-weak-eq-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure make-ephemeron-eq-hashtable>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-ephemeron-eq-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-ephemeron-eq-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "make-ephemeron-eq-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-ref>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-ref>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable-ref>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 4 to #<procedure eq-hashtable-ref>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-ref: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 3 to #<procedure eq-hashtable-contains?>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-contains?: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-set!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-set!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable-set!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 4 to #<procedure eq-hashtable-set!>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-set!: (hash . table) is not an eq hashtable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-set!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-update!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-update!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 3 to #<procedure eq-hashtable-update!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 5 to #<procedure eq-hashtable-update!>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-update!: (hash . table) is not an eq hashtable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-update!: #<eq hashtable> is not mutable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-update!: "not a procedure" is not a procedure".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 3 to #<procedure eq-hashtable-delete!>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-delete!: (hash . table) is not an eq hashtable".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-delete!: #<eq hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 4 to #<procedure eq-hashtable-cell>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-cell: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 3 to #<procedure eq-hashtable-ref-cell>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-ref-cell: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-try-atomic-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 1 to #<procedure eq-hashtable-try-atomic-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable-try-atomic-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 4 to #<procedure eq-hashtable-try-atomic-cell>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-try-atomic-cell: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-weak?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable-weak?>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-weak?: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 0 to #<procedure eq-hashtable-ephemeron?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 2 to #<procedure eq-hashtable-ephemeron?>".
|
|
hash.mo:Expected error in mat eq-hashtable-arguments: "eq-hashtable-ephemeron?: (hash . table) is not an eq hashtable".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-ref>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-ref>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 2 to #<procedure symbol-hashtable-ref>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 4 to #<procedure symbol-hashtable-ref>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 3 to #<procedure symbol-hashtable-contains?>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-contains?: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-contains?: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-contains?: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-set!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-set!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 2 to #<procedure symbol-hashtable-set!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 4 to #<procedure symbol-hashtable-set!>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-set!: #<hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-update!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-update!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 3 to #<procedure symbol-hashtable-update!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 5 to #<procedure symbol-hashtable-update!>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: #<hashtable> is not mutable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-update!: "not a procedure" is not a procedure".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 3 to #<procedure symbol-hashtable-delete!>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-delete!: #<hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 2 to #<procedure symbol-hashtable-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 4 to #<procedure symbol-hashtable-cell>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-cell: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-cell: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-cell: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 0 to #<procedure symbol-hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 1 to #<procedure symbol-hashtable-ref-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 3 to #<procedure symbol-hashtable-ref-cell>".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref-cell: (hash . table) is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref-cell: #<eq hashtable> is not a symbol hashtable".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hashtable-ref-cell: (a) is not a symbol".
|
|
hash.mo:Expected error in mat symbol-hashtable-arguments: "symbol-hash: (a) is not a symbol".
|
|
! hash.mo:Expected error in mat eqv-hashtable-arguments: "incorrect number of arguments 2 to #<procedure make-weak-eqv-hashtable>".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-weak-eqv-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-weak-eqv-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-weak-eqv-hashtable: invalid size argument #f".
|
|
! hash.mo:Expected error in mat eqv-hashtable-arguments: "incorrect number of arguments 2 to #<procedure make-ephemeron-eqv-hashtable>".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-ephemeron-eqv-hashtable: invalid size argument -1".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-ephemeron-eqv-hashtable: invalid size argument #t".
|
|
hash.mo:Expected error in mat eqv-hashtable-arguments: "make-ephemeron-eqv-hashtable: invalid size argument #f".
|
|
***************
|
|
*** 8246,8261 ****
|
|
hash.mo:Expected error in mat generic-hashtable: "hashtable-delete!: #<hashtable> is not mutable".
|
|
hash.mo:Expected error in mat generic-hashtable: "hashtable-update!: #<hashtable> is not mutable".
|
|
hash.mo:Expected error in mat generic-hashtable: "hashtable-update!: #<hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (equal-hash)".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (equal-hash 0 0)".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (symbol-hash)".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (symbol-hash (quote a) (quote a))".
|
|
hash.mo:Expected error in mat hash-functions: "symbol-hash: "hello" is not a symbol".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (string-hash)".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (string-hash (quote a) (quote a))".
|
|
hash.mo:Expected error in mat hash-functions: "string-hash: hello is not a string".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (string-ci-hash)".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect argument count in call (string-ci-hash (quote a) (quote a))".
|
|
hash.mo:Expected error in mat hash-functions: "string-ci-hash: hello is not a string".
|
|
hash.mo:Expected error in mat fasl-other-hashtable: "fasl-write: invalid fasl object #<eqv hashtable>".
|
|
hash.mo:Expected error in mat fasl-other-hashtable: "fasl-write: invalid fasl object #<hashtable>".
|
|
--- 8246,8261 ----
|
|
hash.mo:Expected error in mat generic-hashtable: "hashtable-delete!: #<hashtable> is not mutable".
|
|
hash.mo:Expected error in mat generic-hashtable: "hashtable-update!: #<hashtable> is not mutable".
|
|
hash.mo:Expected error in mat generic-hashtable: "hashtable-update!: #<hashtable> is not mutable".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 0 to #<procedure equal-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 2 to #<procedure equal-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 0 to #<procedure symbol-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 2 to #<procedure symbol-hash>".
|
|
hash.mo:Expected error in mat hash-functions: "symbol-hash: "hello" is not a symbol".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 0 to #<procedure string-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 2 to #<procedure string-hash>".
|
|
hash.mo:Expected error in mat hash-functions: "string-hash: hello is not a string".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 0 to #<procedure string-ci-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 2 to #<procedure string-ci-hash>".
|
|
hash.mo:Expected error in mat hash-functions: "string-ci-hash: hello is not a string".
|
|
hash.mo:Expected error in mat fasl-other-hashtable: "fasl-write: invalid fasl object #<eqv hashtable>".
|
|
hash.mo:Expected error in mat fasl-other-hashtable: "fasl-write: invalid fasl object #<hashtable>".
|
|
***************
|
|
*** 8371,8378 ****
|
|
8.mo:Expected error in mat with-syntax: "invalid syntax a".
|
|
8.mo:Expected error in mat with-syntax: "duplicate pattern variable x in (x x)".
|
|
8.mo:Expected error in mat with-syntax: "duplicate pattern variable x in (x x)".
|
|
! 8.mo:Expected error in mat generate-temporaries: "incorrect argument count in call (generate-temporaries)".
|
|
! 8.mo:Expected error in mat generate-temporaries: "incorrect argument count in call (generate-temporaries (quote (a b c)) (quote (d e f)))".
|
|
8.mo:Expected error in mat generate-temporaries: "generate-temporaries: improper list structure (a b . c)".
|
|
8.mo:Expected error in mat generate-temporaries: "generate-temporaries: cyclic list structure (a b c b c b ...)".
|
|
8.mo:Expected error in mat syntax->list: "syntax->list: invalid argument #<syntax a>".
|
|
--- 8371,8378 ----
|
|
8.mo:Expected error in mat with-syntax: "invalid syntax a".
|
|
8.mo:Expected error in mat with-syntax: "duplicate pattern variable x in (x x)".
|
|
8.mo:Expected error in mat with-syntax: "duplicate pattern variable x in (x x)".
|
|
! 8.mo:Expected error in mat generate-temporaries: "incorrect number of arguments 0 to #<procedure generate-temporaries>".
|
|
! 8.mo:Expected error in mat generate-temporaries: "incorrect number of arguments 2 to #<procedure generate-temporaries>".
|
|
8.mo:Expected error in mat generate-temporaries: "generate-temporaries: improper list structure (a b . c)".
|
|
8.mo:Expected error in mat generate-temporaries: "generate-temporaries: cyclic list structure (a b c b c b ...)".
|
|
8.mo:Expected error in mat syntax->list: "syntax->list: invalid argument #<syntax a>".
|
|
***************
|
|
*** 8989,9004 ****
|
|
8.mo:Expected error in mat rnrs-eval: "attempt to assign unbound identifier foo".
|
|
8.mo:Expected error in mat rnrs-eval: "invalid definition in immutable environment (define cons (quote #<procedure vector>))".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax: "hello" is not a symbol".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect argument count in call (top-level-syntax)".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax: hello is not an environment".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax: #<environment *scheme*> is not a symbol".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax?: "hello" is not a symbol".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect argument count in call (top-level-syntax?)".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax?: hello is not an environment".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax?: #<environment *scheme*> is not a symbol".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: "hello" is not a symbol".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect argument count in call (define-top-level-syntax)".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect argument count in call (define-top-level-syntax 15)".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: hello is not an environment".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: #<environment *scheme*> is not a symbol".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: cannot modify immutable environment #<environment *scheme*>".
|
|
--- 8989,9004 ----
|
|
8.mo:Expected error in mat rnrs-eval: "attempt to assign unbound identifier foo".
|
|
8.mo:Expected error in mat rnrs-eval: "invalid definition in immutable environment (define cons (quote #<procedure vector>))".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax: "hello" is not a symbol".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect number of arguments 0 to #<procedure top-level-syntax>".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax: hello is not an environment".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax: #<environment *scheme*> is not a symbol".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax?: "hello" is not a symbol".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect number of arguments 0 to #<procedure top-level-syntax?>".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax?: hello is not an environment".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "top-level-syntax?: #<environment *scheme*> is not a symbol".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: "hello" is not a symbol".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect number of arguments 0 to #<procedure define-top-level-syntax>".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect number of arguments 1 to #<procedure define-top-level-syntax>".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: hello is not an environment".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: #<environment *scheme*> is not a symbol".
|
|
8.mo:Expected error in mat top-level-syntax-functions: "define-top-level-syntax: cannot modify immutable environment #<environment *scheme*>".
|
|
***************
|
|
*** 9097,9119 ****
|
|
fx.mo:Expected error in mat fx=?: "fx=?: (a) is not a fixnum".
|
|
fx.mo:Expected error in mat fx=?: "fx=?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx=?: "fx=?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx=?: "incorrect argument count in call (fx=? 1)".
|
|
fx.mo:Expected error in mat fx<?: "fx<?: a is not a fixnum".
|
|
fx.mo:Expected error in mat fx<?: "fx<?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx<?: "fx<?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx<?: "incorrect argument count in call (fx<? 1)".
|
|
fx.mo:Expected error in mat fx>?: "fx>?: "hi" is not a fixnum".
|
|
fx.mo:Expected error in mat fx>?: "fx>?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx>?: "fx>?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx>?: "incorrect argument count in call (fx>? 1)".
|
|
fx.mo:Expected error in mat fx<=?: "fx<=?: (a . b) is not a fixnum".
|
|
fx.mo:Expected error in mat fx<=?: "fx<=?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx<=?: "fx<=?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx<=?: "incorrect argument count in call (fx<=? 1)".
|
|
fx.mo:Expected error in mat fx>=?: "fx>=?: (a . b) is not a fixnum".
|
|
fx.mo:Expected error in mat fx>=?: "fx>=?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx>=?: "fx>=?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx>=?: "incorrect argument count in call (fx>=? 1)".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments 1 to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments 3 to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "$fxu<: <-int> is not a fixnum".
|
|
--- 9097,9119 ----
|
|
fx.mo:Expected error in mat fx=?: "fx=?: (a) is not a fixnum".
|
|
fx.mo:Expected error in mat fx=?: "fx=?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx=?: "fx=?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx=?: "incorrect number of arguments 1 to #<procedure fx=?>".
|
|
fx.mo:Expected error in mat fx<?: "fx<?: a is not a fixnum".
|
|
fx.mo:Expected error in mat fx<?: "fx<?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx<?: "fx<?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx<?: "incorrect number of arguments 1 to #<procedure fx<?>".
|
|
fx.mo:Expected error in mat fx>?: "fx>?: "hi" is not a fixnum".
|
|
fx.mo:Expected error in mat fx>?: "fx>?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx>?: "fx>?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx>?: "incorrect number of arguments 1 to #<procedure fx>?>".
|
|
fx.mo:Expected error in mat fx<=?: "fx<=?: (a . b) is not a fixnum".
|
|
fx.mo:Expected error in mat fx<=?: "fx<=?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx<=?: "fx<=?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx<=?: "incorrect number of arguments 1 to #<procedure fx<=?>".
|
|
fx.mo:Expected error in mat fx>=?: "fx>=?: (a . b) is not a fixnum".
|
|
fx.mo:Expected error in mat fx>=?: "fx>=?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx>=?: "fx>=?: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx>=?: "incorrect number of arguments 1 to #<procedure fx>=?>".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments 1 to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments 3 to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "$fxu<: <-int> is not a fixnum".
|
|
***************
|
|
*** 9145,9157 ****
|
|
fx.mo:Expected error in mat r6rs:fx-: "fx-: #f is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx-: "fx-: #f is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: (a . b) is not a fixnum".
|
|
! fx.mo:Expected error in mat fx*: "fx*: fixnum overflow with arguments <int> and 2".
|
|
fx.mo:Expected error in mat fx*: "fx*: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: #f is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: #f is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: (a . b) is not a fixnum".
|
|
! fx.mo:Expected error in mat r6rs:fx*: "fx*: fixnum overflow with arguments <int> and 2".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: #f is not a fixnum".
|
|
--- 9145,9157 ----
|
|
fx.mo:Expected error in mat r6rs:fx-: "fx-: #f is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx-: "fx-: #f is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: (a . b) is not a fixnum".
|
|
! fx.mo:Expected error in mat fx*: "fx*: fixnum overflow computing (fx* <int> 2)".
|
|
fx.mo:Expected error in mat fx*: "fx*: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: #f is not a fixnum".
|
|
fx.mo:Expected error in mat fx*: "fx*: #f is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: (a . b) is not a fixnum".
|
|
! fx.mo:Expected error in mat r6rs:fx*: "fx*: fixnum overflow computing (fx* <int> 2)".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat r6rs:fx*: "fx*: #f is not a fixnum".
|
|
***************
|
|
*** 9201,9213 ****
|
|
fx.mo:Expected error in mat fx1+: "fx1+: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx1+: "fx1+: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx1+: "fx1+: a is not a fixnum".
|
|
! fx.mo:Expected error in mat fxmin: "incorrect argument count in call (fxmin)".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: a is not a fixnum".
|
|
! fx.mo:Expected error in mat fxmax: "incorrect argument count in call (fxmax)".
|
|
fx.mo:Expected error in mat fxmax: "fxmax: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxmax: "fxmax: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxmax: "fxmax: <-int> is not a fixnum".
|
|
--- 9201,9213 ----
|
|
fx.mo:Expected error in mat fx1+: "fx1+: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx1+: "fx1+: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx1+: "fx1+: a is not a fixnum".
|
|
! fx.mo:Expected error in mat fxmin: "incorrect number of arguments 0 to #<procedure fxmin>".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxmin: "fxmin: a is not a fixnum".
|
|
! fx.mo:Expected error in mat fxmax: "incorrect number of arguments 0 to #<procedure fxmax>".
|
|
fx.mo:Expected error in mat fxmax: "fxmax: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxmax: "fxmax: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxmax: "fxmax: <-int> is not a fixnum".
|
|
***************
|
|
*** 9305,9314 ****
|
|
fx.mo:Expected error in mat fxarithmetic-shift: "fxarithmetic-shift: fixnum overflow with arguments <int> and 10".
|
|
fx.mo:Expected error in mat fxarithmetic-shift: "fxarithmetic-shift: fixnum overflow with arguments -4097 and <int>".
|
|
fx.mo:Expected error in mat fxarithmetic-shift: "fxarithmetic-shift: fixnum overflow with arguments <-int> and 1".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect argument count in call (fxbit-field)".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect argument count in call (fxbit-field 35)".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect argument count in call (fxbit-field 35 5)".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect argument count in call (fxbit-field 35 5 8 15)".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: 35.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: 5.0 is not a valid start index".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: 8.0 is not a valid end index".
|
|
--- 9305,9314 ----
|
|
fx.mo:Expected error in mat fxarithmetic-shift: "fxarithmetic-shift: fixnum overflow with arguments <int> and 10".
|
|
fx.mo:Expected error in mat fxarithmetic-shift: "fxarithmetic-shift: fixnum overflow with arguments -4097 and <int>".
|
|
fx.mo:Expected error in mat fxarithmetic-shift: "fxarithmetic-shift: fixnum overflow with arguments <-int> and 1".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments 0 to #<procedure fxbit-field>".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments 1 to #<procedure fxbit-field>".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments 2 to #<procedure fxbit-field>".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments 4 to #<procedure fxbit-field>".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: 35.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: 5.0 is not a valid start index".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: 8.0 is not a valid end index".
|
|
***************
|
|
*** 9322,9355 ****
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: <int> is not a valid end index".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: <int> is not a valid start index".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: <int> is not a valid end index".
|
|
! fx.mo:Expected error in mat fxlength: "incorrect argument count in call (fxlength)".
|
|
! fx.mo:Expected error in mat fxlength: "incorrect argument count in call (fxlength 1 1 1)".
|
|
fx.mo:Expected error in mat fxlength: "fxlength: 0.1 is not a fixnum".
|
|
! fx.mo:Expected error in mat fxbit-count: "incorrect argument count in call (fxbit-count)".
|
|
! fx.mo:Expected error in mat fxbit-count: "incorrect argument count in call (fxbit-count 75 32)".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: 3.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxfirst-bit-set: "incorrect argument count in call (fxfirst-bit-set)".
|
|
! fx.mo:Expected error in mat fxfirst-bit-set: "incorrect argument count in call (fxfirst-bit-set 75 32)".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: 3.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect argument count in call (fxlogtest)".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect argument count in call (fxlogtest 1)".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect argument count in call (fxlogtest 1 2 3)".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxif: "incorrect argument count in call (fxif)".
|
|
! fx.mo:Expected error in mat fxif: "incorrect argument count in call (fxif 0)".
|
|
! fx.mo:Expected error in mat fxif: "incorrect argument count in call (fxif 0 0)".
|
|
! fx.mo:Expected error in mat fxif: "incorrect argument count in call (fxif 0 0 0 0)".
|
|
fx.mo:Expected error in mat fxif: "fxif: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: (a) is not a fixnum".
|
|
--- 9322,9355 ----
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: <int> is not a valid end index".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: <int> is not a valid start index".
|
|
fx.mo:Expected error in mat fxbit-field: "fxbit-field: <int> is not a valid end index".
|
|
! fx.mo:Expected error in mat fxlength: "incorrect number of arguments 0 to #<procedure fxlength>".
|
|
! fx.mo:Expected error in mat fxlength: "incorrect number of arguments 3 to #<procedure fxlength>".
|
|
fx.mo:Expected error in mat fxlength: "fxlength: 0.1 is not a fixnum".
|
|
! fx.mo:Expected error in mat fxbit-count: "incorrect number of arguments 0 to #<procedure fxbit-count>".
|
|
! fx.mo:Expected error in mat fxbit-count: "incorrect number of arguments 2 to #<procedure fxbit-count>".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: 3.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-count: "fxbit-count: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxfirst-bit-set: "incorrect number of arguments 0 to #<procedure fxfirst-bit-set>".
|
|
! fx.mo:Expected error in mat fxfirst-bit-set: "incorrect number of arguments 2 to #<procedure fxfirst-bit-set>".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: 3.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxfirst-bit-set: "fxfirst-bit-set: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect number of arguments 0 to #<procedure fxlogtest>".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect number of arguments 1 to #<procedure fxlogtest>".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect number of arguments 3 to #<procedure fxlogtest>".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogtest: "fxlogtest: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments 0 to #<procedure fxif>".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments 1 to #<procedure fxif>".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments 2 to #<procedure fxif>".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments 4 to #<procedure fxif>".
|
|
fx.mo:Expected error in mat fxif: "fxif: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: (a) is not a fixnum".
|
|
***************
|
|
*** 9359,9402 ****
|
|
fx.mo:Expected error in mat fxif: "fxif: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect argument count in call (fxlogbit?)".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect argument count in call (fxlogbit? 1)".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect argument count in call (fxlogbit? 1 2 3)".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: invalid bit index -1".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect argument count in call (fxbit-set?)".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect argument count in call (fxbit-set? 1)".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect argument count in call (fxbit-set? 1 2 3)".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: invalid bit index -1".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect argument count in call (fxlogbit0)".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect argument count in call (fxlogbit0 1)".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect argument count in call (fxlogbit0 1 2 3)".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: invalid bit index -1".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: invalid bit index <int>".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect argument count in call (fxlogbit1)".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect argument count in call (fxlogbit1 1)".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect argument count in call (fxlogbit1 1 2 3)".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: invalid bit index -1".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: invalid bit index <int>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect argument count in call (fxcopy-bit)".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect argument count in call (fxcopy-bit 1)".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect argument count in call (fxcopy-bit 3 1)".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect argument count in call (fxcopy-bit 3 1 0 0)".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: <int> is not a fixnum".
|
|
--- 9359,9402 ----
|
|
fx.mo:Expected error in mat fxif: "fxif: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxif: "fxif: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect number of arguments 0 to #<procedure fxlogbit?>".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect number of arguments 1 to #<procedure fxlogbit?>".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect number of arguments 3 to #<procedure fxlogbit?>".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit?: "fxlogbit?: invalid bit index -1".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect number of arguments 0 to #<procedure fxbit-set?>".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect number of arguments 1 to #<procedure fxbit-set?>".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect number of arguments 3 to #<procedure fxbit-set?>".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxbit-set?: "fxbit-set?: invalid bit index -1".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect number of arguments 0 to #<procedure fxlogbit0>".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect number of arguments 1 to #<procedure fxlogbit0>".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect number of arguments 3 to #<procedure fxlogbit0>".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: invalid bit index -1".
|
|
fx.mo:Expected error in mat fxlogbit0: "fxlogbit0: invalid bit index <int>".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect number of arguments 0 to #<procedure fxlogbit1>".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect number of arguments 1 to #<procedure fxlogbit1>".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect number of arguments 3 to #<procedure fxlogbit1>".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: <int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: invalid bit index -1".
|
|
fx.mo:Expected error in mat fxlogbit1: "fxlogbit1: invalid bit index <int>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments 0 to #<procedure fxcopy-bit>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments 1 to #<procedure fxcopy-bit>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments 2 to #<procedure fxcopy-bit>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments 4 to #<procedure fxcopy-bit>".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: 3.4 is not a fixnum".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: <int> is not a fixnum".
|
|
***************
|
|
*** 9405,9415 ****
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: invalid bit index -1".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: invalid bit index <int>".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: invalid bit index <int>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect argument count in call (fxcopy-bit-field)".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect argument count in call (fxcopy-bit-field 1)".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect argument count in call (fxcopy-bit-field 3 1)".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect argument count in call (fxcopy-bit-field 3 1 0)".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect argument count in call (fxcopy-bit-field 3 1 0 0 0)".
|
|
fx.mo:Expected error in mat fxcopy-bit-field: "fxcopy-bit-field: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxcopy-bit-field: "fxcopy-bit-field: 3.4 is not a valid start index".
|
|
fx.mo:Expected error in mat fxcopy-bit-field: "fxcopy-bit-field: 3/4 is not a valid end index".
|
|
--- 9405,9415 ----
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: invalid bit index -1".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: invalid bit index <int>".
|
|
fx.mo:Expected error in mat fxcopy-bit: "fxcopy-bit: invalid bit index <int>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments 0 to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments 1 to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments 2 to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments 3 to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments 5 to #<procedure fxcopy-bit-field>".
|
|
fx.mo:Expected error in mat fxcopy-bit-field: "fxcopy-bit-field: "3" is not a fixnum".
|
|
fx.mo:Expected error in mat fxcopy-bit-field: "fxcopy-bit-field: 3.4 is not a valid start index".
|
|
fx.mo:Expected error in mat fxcopy-bit-field: "fxcopy-bit-field: 3/4 is not a valid end index".
|
|
***************
|
|
*** 9469,9478 ****
|
|
fx.mo:Expected error in mat fxdiv0-and-mod0: "fxmod0: (a) is not a fixnum".
|
|
fx.mo:Expected error in mat fxdiv0-and-mod0: "fxmod0: undefined for 0".
|
|
fx.mo:Expected error in mat fxdiv0-and-mod0: "fxmod0: undefined for 0".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect argument count in call (fx+/carry)".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect argument count in call (fx+/carry 1)".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect argument count in call (fx+/carry 1 2)".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect argument count in call (fx+/carry 1 2 3 4)".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: 1.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: 2.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: 3.0 is not a fixnum".
|
|
--- 9469,9478 ----
|
|
fx.mo:Expected error in mat fxdiv0-and-mod0: "fxmod0: (a) is not a fixnum".
|
|
fx.mo:Expected error in mat fxdiv0-and-mod0: "fxmod0: undefined for 0".
|
|
fx.mo:Expected error in mat fxdiv0-and-mod0: "fxmod0: undefined for 0".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments 0 to #<procedure fx+/carry>".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments 1 to #<procedure fx+/carry>".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments 2 to #<procedure fx+/carry>".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments 4 to #<procedure fx+/carry>".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: 1.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: 2.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: 3.0 is not a fixnum".
|
|
***************
|
|
*** 9488,9497 ****
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect argument count in call (fx-/carry)".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect argument count in call (fx-/carry 1)".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect argument count in call (fx-/carry 1 2)".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect argument count in call (fx-/carry 1 2 3 4)".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: 1.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: 2.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: 3.0 is not a fixnum".
|
|
--- 9488,9497 ----
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx+/carry: "fx+/carry: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments 0 to #<procedure fx-/carry>".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments 1 to #<procedure fx-/carry>".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments 2 to #<procedure fx-/carry>".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments 4 to #<procedure fx-/carry>".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: 1.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: 2.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: 3.0 is not a fixnum".
|
|
***************
|
|
*** 9507,9516 ****
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect argument count in call (fx*/carry)".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect argument count in call (fx*/carry 1)".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect argument count in call (fx*/carry 1 2)".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect argument count in call (fx*/carry 1 2 3 4)".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: 1.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: 2.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: 3.0 is not a fixnum".
|
|
--- 9507,9516 ----
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx-/carry: "fx-/carry: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments 0 to #<procedure fx*/carry>".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments 1 to #<procedure fx*/carry>".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments 2 to #<procedure fx*/carry>".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments 4 to #<procedure fx*/carry>".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: 1.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: 2.0 is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: 3.0 is not a fixnum".
|
|
***************
|
|
*** 9526,9536 ****
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect argument count in call (fxrotate-bit-field)".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect argument count in call (fxrotate-bit-field 0)".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect argument count in call (fxrotate-bit-field 0 0)".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect argument count in call (fxrotate-bit-field 0 0 0)".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect argument count in call (fxrotate-bit-field 0 0 0 0 0)".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid start index 0.0".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid end index 2.0".
|
|
--- 9526,9536 ----
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: <-int> is not a fixnum".
|
|
fx.mo:Expected error in mat fx*/carry: "fx*/carry: <-int> is not a fixnum".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments 0 to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments 1 to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments 2 to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments 3 to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments 5 to #<procedure fxrotate-bit-field>".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid start index 0.0".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid end index 2.0".
|
|
***************
|
|
*** 9553,9562 ****
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid end index <int>".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid end index <int>".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: count 1 is greater than difference between end index 5 and start index 5".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect argument count in call (fxreverse-bit-field)".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect argument count in call (fxreverse-bit-field 0)".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect argument count in call (fxreverse-bit-field 0 0)".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect argument count in call (fxreverse-bit-field 0 0 0 0)".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid start index 0.0".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid end index 2.0".
|
|
--- 9553,9562 ----
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid end index <int>".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: invalid end index <int>".
|
|
fx.mo:Expected error in mat fxrotate-bit-field: "fxrotate-bit-field: count 1 is greater than difference between end index 5 and start index 5".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments 0 to #<procedure fxreverse-bit-field>".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments 1 to #<procedure fxreverse-bit-field>".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments 2 to #<procedure fxreverse-bit-field>".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments 4 to #<procedure fxreverse-bit-field>".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: a is not a fixnum".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid start index 0.0".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid end index 2.0".
|
|
***************
|
|
*** 9572,9589 ****
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid end index <int>".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid end index <-int>".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: start index 7 is greater than end index 5".
|
|
! fl.mo:Expected error in mat flonum->fixnum: "incorrect argument count in call (flonum->fixnum)".
|
|
! fl.mo:Expected error in mat flonum->fixnum: "incorrect argument count in call (flonum->fixnum 3.3 4.4)".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: a is not a flonum".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for <int> would be outside of fixnum range".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for <-int> would be outside of fixnum range".
|
|
! fl.mo:Expected error in mat fixnum->flonum: "incorrect argument count in call (fixnum->flonum)".
|
|
! fl.mo:Expected error in mat fixnum->flonum: "incorrect argument count in call (fixnum->flonum 3 4)".
|
|
fl.mo:Expected error in mat fixnum->flonum: "fixnum->flonum: 3.4 is not a fixnum".
|
|
fl.mo:Expected error in mat fixnum->flonum: "fixnum->flonum: a is not a fixnum".
|
|
fl.mo:Expected error in mat fixnum->flonum: "fixnum->flonum: <int> is not a fixnum".
|
|
! fl.mo:Expected error in mat fl=: "incorrect argument count in call (fl=)".
|
|
fl.mo:Expected error in mat fl=: "fl=: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: a is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: a is not a flonum".
|
|
--- 9572,9589 ----
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid end index <int>".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: invalid end index <-int>".
|
|
fx.mo:Expected error in mat fxreverse-bit-field: "fxreverse-bit-field: start index 7 is greater than end index 5".
|
|
! fl.mo:Expected error in mat flonum->fixnum: "incorrect number of arguments 0 to #<procedure flonum->fixnum>".
|
|
! fl.mo:Expected error in mat flonum->fixnum: "incorrect number of arguments 2 to #<procedure flonum->fixnum>".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: a is not a flonum".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for <int> would be outside of fixnum range".
|
|
fl.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for <-int> would be outside of fixnum range".
|
|
! fl.mo:Expected error in mat fixnum->flonum: "incorrect number of arguments 0 to #<procedure fixnum->flonum>".
|
|
! fl.mo:Expected error in mat fixnum->flonum: "incorrect number of arguments 2 to #<procedure fixnum->flonum>".
|
|
fl.mo:Expected error in mat fixnum->flonum: "fixnum->flonum: 3.4 is not a fixnum".
|
|
fl.mo:Expected error in mat fixnum->flonum: "fixnum->flonum: a is not a fixnum".
|
|
fl.mo:Expected error in mat fixnum->flonum: "fixnum->flonum: <int> is not a fixnum".
|
|
! fl.mo:Expected error in mat fl=: "incorrect number of arguments 0 to #<procedure fl=>".
|
|
fl.mo:Expected error in mat fl=: "fl=: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: a is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: a is not a flonum".
|
|
***************
|
|
*** 9591,9597 ****
|
|
fl.mo:Expected error in mat fl=: "fl=: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<: "incorrect argument count in call (fl<)".
|
|
fl.mo:Expected error in mat fl<: "fl<: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: a is not a flonum".
|
|
--- 9591,9597 ----
|
|
fl.mo:Expected error in mat fl=: "fl=: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl=: "fl=: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<: "incorrect number of arguments 0 to #<procedure fl<>".
|
|
fl.mo:Expected error in mat fl<: "fl<: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: a is not a flonum".
|
|
***************
|
|
*** 9599,9605 ****
|
|
fl.mo:Expected error in mat fl<: "fl<: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>: "incorrect argument count in call (fl>)".
|
|
fl.mo:Expected error in mat fl>: "fl>: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: a is not a flonum".
|
|
--- 9599,9605 ----
|
|
fl.mo:Expected error in mat fl<: "fl<: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<: "fl<: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>: "incorrect number of arguments 0 to #<procedure fl>>".
|
|
fl.mo:Expected error in mat fl>: "fl>: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: a is not a flonum".
|
|
***************
|
|
*** 9607,9613 ****
|
|
fl.mo:Expected error in mat fl>: "fl>: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<=: "incorrect argument count in call (fl<=)".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: a is not a flonum".
|
|
--- 9607,9613 ----
|
|
fl.mo:Expected error in mat fl>: "fl>: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl>: "fl>: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<=: "incorrect number of arguments 0 to #<procedure fl<=>".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: a is not a flonum".
|
|
***************
|
|
*** 9615,9621 ****
|
|
fl.mo:Expected error in mat fl<=: "fl<=: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>=: "incorrect argument count in call (fl>=)".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: a is not a flonum".
|
|
--- 9615,9621 ----
|
|
fl.mo:Expected error in mat fl<=: "fl<=: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=: "fl<=: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>=: "incorrect number of arguments 0 to #<procedure fl>=>".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: (a) is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: a is not a flonum".
|
|
***************
|
|
*** 9623,9662 ****
|
|
fl.mo:Expected error in mat fl>=: "fl>=: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl=?: "incorrect argument count in call (fl=?)".
|
|
! fl.mo:Expected error in mat fl=?: "incorrect argument count in call (fl=? 3.4)".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<?: "incorrect argument count in call (fl<?)".
|
|
! fl.mo:Expected error in mat fl<?: "incorrect argument count in call (fl<? 3.4)".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>?: "incorrect argument count in call (fl>?)".
|
|
! fl.mo:Expected error in mat fl>?: "incorrect argument count in call (fl>? 3.4)".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<=?: "incorrect argument count in call (fl<=?)".
|
|
! fl.mo:Expected error in mat fl<=?: "incorrect argument count in call (fl<=? 3.4)".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>=?: "incorrect argument count in call (fl>=?)".
|
|
! fl.mo:Expected error in mat fl>=?: "incorrect argument count in call (fl>=? 3.4)".
|
|
fl.mo:Expected error in mat fl>=?: "fl>=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>=?: "fl>=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>=?: "fl>=?: 3 is not a flonum".
|
|
--- 9623,9662 ----
|
|
fl.mo:Expected error in mat fl>=: "fl>=: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl>=: "fl>=: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl=?: "incorrect number of arguments 0 to #<procedure fl=?>".
|
|
! fl.mo:Expected error in mat fl=?: "incorrect number of arguments 1 to #<procedure fl=?>".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl=?: "fl=?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<?: "incorrect number of arguments 0 to #<procedure fl<?>".
|
|
! fl.mo:Expected error in mat fl<?: "incorrect number of arguments 1 to #<procedure fl<?>".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<?: "fl<?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>?: "incorrect number of arguments 0 to #<procedure fl>?>".
|
|
! fl.mo:Expected error in mat fl>?: "incorrect number of arguments 1 to #<procedure fl>?>".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl>?: "fl>?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl<=?: "incorrect number of arguments 0 to #<procedure fl<=?>".
|
|
! fl.mo:Expected error in mat fl<=?: "incorrect number of arguments 1 to #<procedure fl<=?>".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 7/2 is not a flonum".
|
|
fl.mo:Expected error in mat fl<=?: "fl<=?: 7/2 is not a flonum".
|
|
! fl.mo:Expected error in mat fl>=?: "incorrect number of arguments 0 to #<procedure fl>=?>".
|
|
! fl.mo:Expected error in mat fl>=?: "incorrect number of arguments 1 to #<procedure fl>=?>".
|
|
fl.mo:Expected error in mat fl>=?: "fl>=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>=?: "fl>=?: a is not a flonum".
|
|
fl.mo:Expected error in mat fl>=?: "fl>=?: 3 is not a flonum".
|
|
***************
|
|
*** 9666,9672 ****
|
|
fl.mo:Expected error in mat fl+: "fl+: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl+: "fl+: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl+: "fl+: 2/3 is not a flonum".
|
|
! fl.mo:Expected error in mat fl-: "incorrect argument count in call (fl-)".
|
|
fl.mo:Expected error in mat fl-: "fl-: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl-: "fl-: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl-: "fl-: a is not a flonum".
|
|
--- 9666,9672 ----
|
|
fl.mo:Expected error in mat fl+: "fl+: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl+: "fl+: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl+: "fl+: 2/3 is not a flonum".
|
|
! fl.mo:Expected error in mat fl-: "incorrect number of arguments 0 to #<procedure fl->".
|
|
fl.mo:Expected error in mat fl-: "fl-: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl-: "fl-: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl-: "fl-: a is not a flonum".
|
|
***************
|
|
*** 9676,9758 ****
|
|
fl.mo:Expected error in mat fl*: "fl*: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl*: "fl*: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl*: "fl*: 2/3 is not a flonum".
|
|
! fl.mo:Expected error in mat fl/: "incorrect argument count in call (fl/)".
|
|
fl.mo:Expected error in mat fl/: "fl/: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl/: "fl/: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl/: "fl/: 2/3 is not a flonum".
|
|
! fl.mo:Expected error in mat flabs: "incorrect argument count in call (flabs)".
|
|
! fl.mo:Expected error in mat flabs: "incorrect argument count in call (flabs 1 2)".
|
|
fl.mo:Expected error in mat flabs: "flabs: a is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: 1 is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: -3/4 is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: 3+4i is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: 3.3+4.5i is not a flonum".
|
|
! fl.mo:Expected error in mat fllog: "incorrect argument count in call (fllog)".
|
|
fl.mo:Expected error in mat fllog: "fllog: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fllog: "fllog: a is not a flonum".
|
|
fl.mo:Expected error in mat fllog: "fllog: 0 is not a flonum".
|
|
! fl.mo:Expected error in mat flexp: "incorrect argument count in call (flexp)".
|
|
! fl.mo:Expected error in mat flexp: "incorrect argument count in call (flexp 3.0 4.0)".
|
|
fl.mo:Expected error in mat flexp: "flexp: a is not a flonum".
|
|
fl.mo:Expected error in mat flexp: "flexp: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flsin: "incorrect argument count in call (flsin)".
|
|
! fl.mo:Expected error in mat flsin: "incorrect argument count in call (flsin 3.0 4.0)".
|
|
fl.mo:Expected error in mat flsin: "flsin: a is not a flonum".
|
|
fl.mo:Expected error in mat flsin: "flsin: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flcos: "incorrect argument count in call (flcos)".
|
|
! fl.mo:Expected error in mat flcos: "incorrect argument count in call (flcos 3.0 4.0)".
|
|
fl.mo:Expected error in mat flcos: "flcos: a is not a flonum".
|
|
fl.mo:Expected error in mat flcos: "flcos: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat fltan: "incorrect argument count in call (fltan)".
|
|
! fl.mo:Expected error in mat fltan: "incorrect argument count in call (fltan 3.0 4.0)".
|
|
fl.mo:Expected error in mat fltan: "fltan: a is not a flonum".
|
|
fl.mo:Expected error in mat fltan: "fltan: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flasin: "incorrect argument count in call (flasin)".
|
|
! fl.mo:Expected error in mat flasin: "incorrect argument count in call (flasin 3.0 4.0)".
|
|
fl.mo:Expected error in mat flasin: "flasin: a is not a flonum".
|
|
fl.mo:Expected error in mat flasin: "flasin: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flacos: "incorrect argument count in call (flacos)".
|
|
! fl.mo:Expected error in mat flacos: "incorrect argument count in call (flacos 3.0 4.0)".
|
|
fl.mo:Expected error in mat flacos: "flacos: a is not a flonum".
|
|
fl.mo:Expected error in mat flacos: "flacos: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flatan: "incorrect argument count in call (flatan)".
|
|
! fl.mo:Expected error in mat flatan: "incorrect argument count in call (flatan 3.0 4.0 5.0)".
|
|
fl.mo:Expected error in mat flatan: "flatan: a is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: a is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: a is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: 0+1i is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: 0-1i is not a flonum".
|
|
! fl.mo:Expected error in mat flsqrt: "incorrect argument count in call (flsqrt)".
|
|
! fl.mo:Expected error in mat flsqrt: "incorrect argument count in call (flsqrt 3.0 4.0)".
|
|
fl.mo:Expected error in mat flsqrt: "flsqrt: a is not a flonum".
|
|
fl.mo:Expected error in mat flsqrt: "flsqrt: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect argument count in call (flexpt)".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect argument count in call (flexpt 5.0)".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect argument count in call (flexpt 3.0 4.0 5.0)".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: a is not a flonum".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: a is not a flonum".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: -1 is not a flonum".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: 0+1i is not a flonum".
|
|
! fl.mo:Expected error in mat fltruncate: "incorrect argument count in call (fltruncate)".
|
|
! fl.mo:Expected error in mat fltruncate: "incorrect argument count in call (fltruncate 2.0 3.0)".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: a is not a flonum".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: 2.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: 2+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flfloor: "incorrect argument count in call (flfloor)".
|
|
! fl.mo:Expected error in mat flfloor: "incorrect argument count in call (flfloor 2.0 3.0)".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: a is not a flonum".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: 2.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: 2+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flceiling: "incorrect argument count in call (flceiling)".
|
|
! fl.mo:Expected error in mat flceiling: "incorrect argument count in call (flceiling 2.0 3.0)".
|
|
fl.mo:Expected error in mat flceiling: "flceiling: a is not a flonum".
|
|
fl.mo:Expected error in mat flceiling: "flceiling: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flceiling: "flceiling: 2.0+1.0i is not a flonum".
|
|
! fl.mo:Expected error in mat flround: "incorrect argument count in call (flround)".
|
|
! fl.mo:Expected error in mat flround: "incorrect argument count in call (flround 2.0 3)".
|
|
fl.mo:Expected error in mat flround: "flround: a is not a flonum".
|
|
fl.mo:Expected error in mat flround: "flround: 2.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flround: "flround: 2+1i is not a flonum".
|
|
--- 9676,9758 ----
|
|
fl.mo:Expected error in mat fl*: "fl*: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl*: "fl*: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl*: "fl*: 2/3 is not a flonum".
|
|
! fl.mo:Expected error in mat fl/: "incorrect number of arguments 0 to #<procedure fl/>".
|
|
fl.mo:Expected error in mat fl/: "fl/: (a . b) is not a flonum".
|
|
fl.mo:Expected error in mat fl/: "fl/: 1 is not a flonum".
|
|
fl.mo:Expected error in mat fl/: "fl/: 2/3 is not a flonum".
|
|
! fl.mo:Expected error in mat flabs: "incorrect number of arguments 0 to #<procedure flabs>".
|
|
! fl.mo:Expected error in mat flabs: "incorrect number of arguments 2 to #<procedure flabs>".
|
|
fl.mo:Expected error in mat flabs: "flabs: a is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: 1 is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: -3/4 is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: 3+4i is not a flonum".
|
|
fl.mo:Expected error in mat flabs: "flabs: 3.3+4.5i is not a flonum".
|
|
! fl.mo:Expected error in mat fllog: "incorrect number of arguments 0 to #<procedure fllog>".
|
|
fl.mo:Expected error in mat fllog: "fllog: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fllog: "fllog: a is not a flonum".
|
|
fl.mo:Expected error in mat fllog: "fllog: 0 is not a flonum".
|
|
! fl.mo:Expected error in mat flexp: "incorrect number of arguments 0 to #<procedure flexp>".
|
|
! fl.mo:Expected error in mat flexp: "incorrect number of arguments 2 to #<procedure flexp>".
|
|
fl.mo:Expected error in mat flexp: "flexp: a is not a flonum".
|
|
fl.mo:Expected error in mat flexp: "flexp: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flsin: "incorrect number of arguments 0 to #<procedure flsin>".
|
|
! fl.mo:Expected error in mat flsin: "incorrect number of arguments 2 to #<procedure flsin>".
|
|
fl.mo:Expected error in mat flsin: "flsin: a is not a flonum".
|
|
fl.mo:Expected error in mat flsin: "flsin: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flcos: "incorrect number of arguments 0 to #<procedure flcos>".
|
|
! fl.mo:Expected error in mat flcos: "incorrect number of arguments 2 to #<procedure flcos>".
|
|
fl.mo:Expected error in mat flcos: "flcos: a is not a flonum".
|
|
fl.mo:Expected error in mat flcos: "flcos: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat fltan: "incorrect number of arguments 0 to #<procedure fltan>".
|
|
! fl.mo:Expected error in mat fltan: "incorrect number of arguments 2 to #<procedure fltan>".
|
|
fl.mo:Expected error in mat fltan: "fltan: a is not a flonum".
|
|
fl.mo:Expected error in mat fltan: "fltan: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flasin: "incorrect number of arguments 0 to #<procedure flasin>".
|
|
! fl.mo:Expected error in mat flasin: "incorrect number of arguments 2 to #<procedure flasin>".
|
|
fl.mo:Expected error in mat flasin: "flasin: a is not a flonum".
|
|
fl.mo:Expected error in mat flasin: "flasin: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flacos: "incorrect number of arguments 0 to #<procedure flacos>".
|
|
! fl.mo:Expected error in mat flacos: "incorrect number of arguments 2 to #<procedure flacos>".
|
|
fl.mo:Expected error in mat flacos: "flacos: a is not a flonum".
|
|
fl.mo:Expected error in mat flacos: "flacos: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flatan: "incorrect number of arguments 0 to #<procedure flatan>".
|
|
! fl.mo:Expected error in mat flatan: "incorrect number of arguments 3 to #<procedure flatan>".
|
|
fl.mo:Expected error in mat flatan: "flatan: a is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: a is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: a is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: 0+1i is not a flonum".
|
|
fl.mo:Expected error in mat flatan: "flatan: 0-1i is not a flonum".
|
|
! fl.mo:Expected error in mat flsqrt: "incorrect number of arguments 0 to #<procedure flsqrt>".
|
|
! fl.mo:Expected error in mat flsqrt: "incorrect number of arguments 2 to #<procedure flsqrt>".
|
|
fl.mo:Expected error in mat flsqrt: "flsqrt: a is not a flonum".
|
|
fl.mo:Expected error in mat flsqrt: "flsqrt: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect number of arguments 0 to #<procedure flexpt>".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect number of arguments 1 to #<procedure flexpt>".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect number of arguments 3 to #<procedure flexpt>".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: a is not a flonum".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: a is not a flonum".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: -1 is not a flonum".
|
|
fl.mo:Expected error in mat flexpt: "flexpt: 0+1i is not a flonum".
|
|
! fl.mo:Expected error in mat fltruncate: "incorrect number of arguments 0 to #<procedure fltruncate>".
|
|
! fl.mo:Expected error in mat fltruncate: "incorrect number of arguments 2 to #<procedure fltruncate>".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: a is not a flonum".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: 2.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat fltruncate: "fltruncate: 2+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flfloor: "incorrect number of arguments 0 to #<procedure flfloor>".
|
|
! fl.mo:Expected error in mat flfloor: "incorrect number of arguments 2 to #<procedure flfloor>".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: a is not a flonum".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: 2.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flfloor: "flfloor: 2+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flceiling: "incorrect number of arguments 0 to #<procedure flceiling>".
|
|
! fl.mo:Expected error in mat flceiling: "incorrect number of arguments 2 to #<procedure flceiling>".
|
|
fl.mo:Expected error in mat flceiling: "flceiling: a is not a flonum".
|
|
fl.mo:Expected error in mat flceiling: "flceiling: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flceiling: "flceiling: 2.0+1.0i is not a flonum".
|
|
! fl.mo:Expected error in mat flround: "incorrect number of arguments 0 to #<procedure flround>".
|
|
! fl.mo:Expected error in mat flround: "incorrect number of arguments 2 to #<procedure flround>".
|
|
fl.mo:Expected error in mat flround: "flround: a is not a flonum".
|
|
fl.mo:Expected error in mat flround: "flround: 2.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flround: "flround: 2+1i is not a flonum".
|
|
***************
|
|
*** 9772,9807 ****
|
|
fl.mo:Expected error in mat flinfinite?: "flinfinite?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flinfinite?: "flinfinite?: 3/4 is not a flonum".
|
|
fl.mo:Expected error in mat flinfinite?: "flinfinite?: hi is not a flonum".
|
|
! fl.mo:Expected error in mat flzero?: "incorrect argument count in call (flzero?)".
|
|
! fl.mo:Expected error in mat flzero?: "incorrect argument count in call (flzero? 0.0 1.0)".
|
|
fl.mo:Expected error in mat flzero?: "flzero?: a is not a flonum".
|
|
fl.mo:Expected error in mat flzero?: "flzero?: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flpositive?: "incorrect argument count in call (flpositive?)".
|
|
! fl.mo:Expected error in mat flpositive?: "incorrect argument count in call (flpositive? 0.0 1.0)".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: a is not a flonum".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: 1.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: 1+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnegative?: "incorrect argument count in call (flnegative?)".
|
|
! fl.mo:Expected error in mat flnegative?: "incorrect argument count in call (flnegative? 0.0 1.0)".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: a is not a flonum".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: 1.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: 1+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnonpositive?: "incorrect argument count in call (flnonpositive?)".
|
|
! fl.mo:Expected error in mat flnonpositive?: "incorrect argument count in call (flnonpositive? 0.0 1.0)".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: a is not a flonum".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: 1.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: 1+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnonnegative?: "incorrect argument count in call (flnonnegative?)".
|
|
! fl.mo:Expected error in mat flnonnegative?: "incorrect argument count in call (flnonnegative? 0.0 1.0)".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: a is not a flonum".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: 1+1i is not a flonum".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: 1.0+1.0i is not a flonum".
|
|
! fl.mo:Expected error in mat fleven?: "incorrect argument count in call (fleven?)".
|
|
! fl.mo:Expected error in mat fleven?: "incorrect argument count in call (fleven? 0.0 1.0)".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: a is not a flonum".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: 3.2 is not an integer".
|
|
--- 9772,9807 ----
|
|
fl.mo:Expected error in mat flinfinite?: "flinfinite?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flinfinite?: "flinfinite?: 3/4 is not a flonum".
|
|
fl.mo:Expected error in mat flinfinite?: "flinfinite?: hi is not a flonum".
|
|
! fl.mo:Expected error in mat flzero?: "incorrect number of arguments 0 to #<procedure flzero?>".
|
|
! fl.mo:Expected error in mat flzero?: "incorrect number of arguments 2 to #<procedure flzero?>".
|
|
fl.mo:Expected error in mat flzero?: "flzero?: a is not a flonum".
|
|
fl.mo:Expected error in mat flzero?: "flzero?: 3 is not a flonum".
|
|
! fl.mo:Expected error in mat flpositive?: "incorrect number of arguments 0 to #<procedure flpositive?>".
|
|
! fl.mo:Expected error in mat flpositive?: "incorrect number of arguments 2 to #<procedure flpositive?>".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: a is not a flonum".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: 1.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flpositive?: "flpositive?: 1+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnegative?: "incorrect number of arguments 0 to #<procedure flnegative?>".
|
|
! fl.mo:Expected error in mat flnegative?: "incorrect number of arguments 2 to #<procedure flnegative?>".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: a is not a flonum".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: 1.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flnegative?: "flnegative?: 1+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnonpositive?: "incorrect number of arguments 0 to #<procedure flnonpositive?>".
|
|
! fl.mo:Expected error in mat flnonpositive?: "incorrect number of arguments 2 to #<procedure flnonpositive?>".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: a is not a flonum".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: 1.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flnonpositive?: "flnonpositive?: 1+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnonnegative?: "incorrect number of arguments 0 to #<procedure flnonnegative?>".
|
|
! fl.mo:Expected error in mat flnonnegative?: "incorrect number of arguments 2 to #<procedure flnonnegative?>".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: a is not a flonum".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: 1+1i is not a flonum".
|
|
fl.mo:Expected error in mat flnonnegative?: "flnonnegative?: 1.0+1.0i is not a flonum".
|
|
! fl.mo:Expected error in mat fleven?: "incorrect number of arguments 0 to #<procedure fleven?>".
|
|
! fl.mo:Expected error in mat fleven?: "incorrect number of arguments 2 to #<procedure fleven?>".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: a is not a flonum".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: 3.2 is not an integer".
|
|
***************
|
|
*** 9809,9816 ****
|
|
fl.mo:Expected error in mat fleven?: "fleven?: 1+1i is not a flonum".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: +inf.0 is not an integer".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: +nan.0 is not an integer".
|
|
! fl.mo:Expected error in mat flodd?: "incorrect argument count in call (flodd?)".
|
|
! fl.mo:Expected error in mat flodd?: "incorrect argument count in call (flodd? 0.0 1.0)".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: a is not a flonum".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: 3.2 is not an integer".
|
|
--- 9809,9816 ----
|
|
fl.mo:Expected error in mat fleven?: "fleven?: 1+1i is not a flonum".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: +inf.0 is not an integer".
|
|
fl.mo:Expected error in mat fleven?: "fleven?: +nan.0 is not an integer".
|
|
! fl.mo:Expected error in mat flodd?: "incorrect number of arguments 0 to #<procedure flodd?>".
|
|
! fl.mo:Expected error in mat flodd?: "incorrect number of arguments 2 to #<procedure flodd?>".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: a is not a flonum".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: 3.2 is not an integer".
|
|
***************
|
|
*** 9818,9824 ****
|
|
fl.mo:Expected error in mat flodd?: "flodd?: 3+1i is not a flonum".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: +inf.0 is not an integer".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: +nan.0 is not an integer".
|
|
! fl.mo:Expected error in mat flmin: "incorrect argument count in call (flmin)".
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
--- 9818,9824 ----
|
|
fl.mo:Expected error in mat flodd?: "flodd?: 3+1i is not a flonum".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: +inf.0 is not an integer".
|
|
fl.mo:Expected error in mat flodd?: "flodd?: +nan.0 is not an integer".
|
|
! fl.mo:Expected error in mat flmin: "incorrect number of arguments 0 to #<procedure flmin>".
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
***************
|
|
*** 9826,9832 ****
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: 0.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: 0+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flmax: "incorrect argument count in call (flmax)".
|
|
fl.mo:Expected error in mat flmax: "flmax: a is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: a is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: 3 is not a flonum".
|
|
--- 9826,9832 ----
|
|
fl.mo:Expected error in mat flmin: "flmin: a is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: 0.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flmin: "flmin: 0+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flmax: "incorrect number of arguments 0 to #<procedure flmax>".
|
|
fl.mo:Expected error in mat flmax: "flmax: a is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: a is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: 3 is not a flonum".
|
|
***************
|
|
*** 9834,9847 ****
|
|
fl.mo:Expected error in mat flmax: "flmax: a is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: 0.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: 0+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnumerator: "incorrect argument count in call (flnumerator)".
|
|
! fl.mo:Expected error in mat flnumerator: "incorrect argument count in call (flnumerator 3.0 4.0)".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: a is not a flonum".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: 0+1i is not a flonum".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: 2.2+1.1i is not a flonum".
|
|
! fl.mo:Expected error in mat fldenominator: "incorrect argument count in call (fldenominator)".
|
|
! fl.mo:Expected error in mat fldenominator: "incorrect argument count in call (fldenominator 3.0 4.0)".
|
|
fl.mo:Expected error in mat fldenominator: "fldenominator: a is not a flonum".
|
|
fl.mo:Expected error in mat fldenominator: "fldenominator: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fldenominator: "fldenominator: 0+1i is not a flonum".
|
|
--- 9834,9847 ----
|
|
fl.mo:Expected error in mat flmax: "flmax: a is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: 0.0+1.0i is not a flonum".
|
|
fl.mo:Expected error in mat flmax: "flmax: 0+1i is not a flonum".
|
|
! fl.mo:Expected error in mat flnumerator: "incorrect number of arguments 0 to #<procedure flnumerator>".
|
|
! fl.mo:Expected error in mat flnumerator: "incorrect number of arguments 2 to #<procedure flnumerator>".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: a is not a flonum".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: 3 is not a flonum".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: 0+1i is not a flonum".
|
|
fl.mo:Expected error in mat flnumerator: "flnumerator: 2.2+1.1i is not a flonum".
|
|
! fl.mo:Expected error in mat fldenominator: "incorrect number of arguments 0 to #<procedure fldenominator>".
|
|
! fl.mo:Expected error in mat fldenominator: "incorrect number of arguments 2 to #<procedure fldenominator>".
|
|
fl.mo:Expected error in mat fldenominator: "fldenominator: a is not a flonum".
|
|
fl.mo:Expected error in mat fldenominator: "fldenominator: 3 is not a flonum".
|
|
fl.mo:Expected error in mat fldenominator: "fldenominator: 0+1i is not a flonum".
|
|
***************
|
|
*** 9887,9893 ****
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
! cfl.mo:Expected error in mat cfl-: "incorrect argument count in call (cfl-)".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
--- 9887,9893 ----
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
! cfl.mo:Expected error in mat cfl-: "incorrect number of arguments 0 to #<procedure cfl->".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl-: "cfl-: a is not a cflonum".
|
|
***************
|
|
*** 9897,9910 ****
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
! cfl.mo:Expected error in mat cfl/: "incorrect argument count in call (cfl/)".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl=: "cfl=: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl=: "cfl=: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl=: "cfl=: a is not a cflonum".
|
|
! cfl.mo:Expected error in mat cfl=: "incorrect argument count in call (cfl=)".
|
|
foreign.mo:Expected error in mat load-shared-object: "load-shared-object: invalid path 3".
|
|
foreign.mo:Expected error in mat foreign-procedure: "foreign-procedure: no entry for "i do not exist"".
|
|
foreign.mo:Expected error in mat foreign-procedure: "foreign-procedure: no entry for "i do not exist"".
|
|
--- 9897,9910 ----
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
! cfl.mo:Expected error in mat cfl/: "incorrect number of arguments 0 to #<procedure cfl/>".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl/: "cfl/: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl=: "cfl=: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl=: "cfl=: a is not a cflonum".
|
|
cfl.mo:Expected error in mat cfl=: "cfl=: a is not a cflonum".
|
|
! cfl.mo:Expected error in mat cfl=: "incorrect number of arguments 0 to #<procedure cfl=>".
|
|
foreign.mo:Expected error in mat load-shared-object: "load-shared-object: invalid path 3".
|
|
foreign.mo:Expected error in mat foreign-procedure: "foreign-procedure: no entry for "i do not exist"".
|
|
foreign.mo:Expected error in mat foreign-procedure: "foreign-procedure: no entry for "i do not exist"".
|
|
***************
|
|
*** 9939,9946 ****
|
|
foreign.mo:Expected error in mat foreign-procedure: "id: invalid foreign-procedure argument foo".
|
|
foreign.mo:Expected error in mat foreign-procedure: "foreign-procedure: invalid foreign procedure handle abcde".
|
|
foreign.mo:Expected error in mat foreign-procedure: "float_id: invalid foreign-procedure argument 0".
|
|
! foreign.mo:Expected error in mat foreign-sizeof: "incorrect argument count in call (foreign-sizeof)".
|
|
! foreign.mo:Expected error in mat foreign-sizeof: "incorrect argument count in call (foreign-sizeof (quote int) (quote int))".
|
|
foreign.mo:Expected error in mat foreign-sizeof: "foreign-sizeof: invalid foreign type specifier i-am-not-a-type".
|
|
foreign.mo:Expected error in mat foreign-sizeof: "foreign-sizeof: invalid foreign type specifier 1".
|
|
foreign.mo:Expected error in mat foreign-bytevectors: "u8*->u8*: invalid foreign-procedure argument "hello"".
|
|
--- 9939,9946 ----
|
|
foreign.mo:Expected error in mat foreign-procedure: "id: invalid foreign-procedure argument foo".
|
|
foreign.mo:Expected error in mat foreign-procedure: "foreign-procedure: invalid foreign procedure handle abcde".
|
|
foreign.mo:Expected error in mat foreign-procedure: "float_id: invalid foreign-procedure argument 0".
|
|
! foreign.mo:Expected error in mat foreign-sizeof: "incorrect number of arguments 0 to #<procedure foreign-sizeof>".
|
|
! foreign.mo:Expected error in mat foreign-sizeof: "incorrect number of arguments 2 to #<procedure foreign-sizeof>".
|
|
foreign.mo:Expected error in mat foreign-sizeof: "foreign-sizeof: invalid foreign type specifier i-am-not-a-type".
|
|
foreign.mo:Expected error in mat foreign-sizeof: "foreign-sizeof: invalid foreign type specifier 1".
|
|
foreign.mo:Expected error in mat foreign-bytevectors: "u8*->u8*: invalid foreign-procedure argument "hello"".
|
|
***************
|
|
*** 10438,10450 ****
|
|
unix.mo:Expected error in mat file-operations: "file-access-time: failed for "testlink": no such file or directory".
|
|
unix.mo:Expected error in mat file-operations: "file-change-time: failed for "testlink": no such file or directory".
|
|
unix.mo:Expected error in mat file-operations: "file-modification-time: failed for "testlink": no such file or directory".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (get-registry)".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (get-registry 1 2)".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (put-registry! "hi")".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (put-registry! 1)".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (put-registry! 1 2 3)".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (remove-registry!)".
|
|
! windows.mo:Expected error in mat registry: "incorrect argument count in call (remove-registry! 1 2)".
|
|
windows.mo:Expected error in mat registry: "get-registry: pooh is not a string".
|
|
windows.mo:Expected error in mat registry: "put-registry!: 3 is not a string".
|
|
windows.mo:Expected error in mat registry: "put-registry!: 3 is not a string".
|
|
--- 10438,10450 ----
|
|
unix.mo:Expected error in mat file-operations: "file-access-time: failed for "testlink": no such file or directory".
|
|
unix.mo:Expected error in mat file-operations: "file-change-time: failed for "testlink": no such file or directory".
|
|
unix.mo:Expected error in mat file-operations: "file-modification-time: failed for "testlink": no such file or directory".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure get-registry>".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure get-registry>".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure put-registry!>".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure put-registry!>".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure put-registry!>".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure remove-registry!>".
|
|
! windows.mo:Expected error in mat registry: "incorrect number of arguments to #<procedure remove-registry!>".
|
|
windows.mo:Expected error in mat registry: "get-registry: pooh is not a string".
|
|
windows.mo:Expected error in mat registry: "put-registry!: 3 is not a string".
|
|
windows.mo:Expected error in mat registry: "put-registry!: 3 is not a string".
|
|
***************
|
|
*** 10472,10543 ****
|
|
ieee.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for -inf.0 would be outside of fixnum range".
|
|
ieee.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for +nan.0 would be outside of fixnum range".
|
|
ieee.mo:Expected error in mat fllp: "fllp: 3 is not a flonum".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (make-time)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (make-time (quote time-utc))".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (make-time (quote time-utc) 17)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (make-time (quote time-utc) 17 0 50)".
|
|
date.mo:Expected error in mat time: "make-time: unrecognized time type time-nonsense".
|
|
date.mo:Expected error in mat time: "make-time: invalid number of seconds #f".
|
|
date.mo:Expected error in mat time: "make-time: invalid nanosecond -1".
|
|
date.mo:Expected error in mat time: "make-time: invalid nanosecond <int>".
|
|
date.mo:Expected error in mat time: "make-time: invalid nanosecond #f".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time?)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time? #f 3)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time-type)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time-type $time-t1 #t)".
|
|
date.mo:Expected error in mat time: "time-type: 17 is not a time record".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time-second)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time-second $time-t1 #t)".
|
|
date.mo:Expected error in mat time: "time-second: 17 is not a time record".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time-nanosecond)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time-nanosecond $time-t1 #t)".
|
|
date.mo:Expected error in mat time: "time-nanosecond: 17 is not a time record".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-type!)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-type! $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-type! $time-t1 (quote time-utc) 0)".
|
|
date.mo:Expected error in mat time: "set-time-type!: time-utc is not a time record".
|
|
date.mo:Expected error in mat time: "set-time-type!: unrecognized time type time-nonsense".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-second!)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-second! $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-second! $time-t1 5000 0)".
|
|
date.mo:Expected error in mat time: "set-time-second!: 5000 is not a time record".
|
|
date.mo:Expected error in mat time: "set-time-second!: invalid number of seconds time-utc".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-nanosecond!)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-nanosecond! $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (set-time-nanosecond! $time-t1 5000 0)".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: 5000 is not a time record".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: invalid nanosecond -1".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: invalid nanosecond time-utc".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: invalid nanosecond <int>".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (current-time (quote time-utc) #t)".
|
|
date.mo:Expected error in mat time: "current-time: unrecognized time type time-nonsense".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time=?)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time=? $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time=? $time-t1 $time-t1 $time-t1)".
|
|
date.mo:Expected error in mat time: "time=?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time=?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time=?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time<?)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time<? $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time<? $time-t1 $time-t1 $time-t1)".
|
|
date.mo:Expected error in mat time: "time<?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time<?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time<?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time<=?)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time<=? $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time<=? $time-t1 $time-t1 $time-t1)".
|
|
date.mo:Expected error in mat time: "time<=?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time<=?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time<=?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time>?)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time>? $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time>? $time-t1 $time-t1 $time-t1)".
|
|
date.mo:Expected error in mat time: "time>?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time>?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time>?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time>=?)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time>=? $time-t1)".
|
|
! date.mo:Expected error in mat time: "incorrect argument count in call (time>=? $time-t1 $time-t1 $time-t1)".
|
|
date.mo:Expected error in mat time: "time>=?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time>=?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time>=?: types of <time> and <time> differ".
|
|
--- 10472,10543 ----
|
|
ieee.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for -inf.0 would be outside of fixnum range".
|
|
ieee.mo:Expected error in mat flonum->fixnum: "flonum->fixnum: result for +nan.0 would be outside of fixnum range".
|
|
ieee.mo:Expected error in mat fllp: "fllp: 3 is not a flonum".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure make-time>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure make-time>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 2 to #<procedure make-time>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 4 to #<procedure make-time>".
|
|
date.mo:Expected error in mat time: "make-time: unrecognized time type time-nonsense".
|
|
date.mo:Expected error in mat time: "make-time: invalid number of seconds #f".
|
|
date.mo:Expected error in mat time: "make-time: invalid nanosecond -1".
|
|
date.mo:Expected error in mat time: "make-time: invalid nanosecond <int>".
|
|
date.mo:Expected error in mat time: "make-time: invalid nanosecond #f".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 2 to #<procedure time?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time-type>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 2 to #<procedure time-type>".
|
|
date.mo:Expected error in mat time: "time-type: 17 is not a time record".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time-second>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 2 to #<procedure time-second>".
|
|
date.mo:Expected error in mat time: "time-second: 17 is not a time record".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time-nanosecond>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 2 to #<procedure time-nanosecond>".
|
|
date.mo:Expected error in mat time: "time-nanosecond: 17 is not a time record".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure set-time-type!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure set-time-type!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure set-time-type!>".
|
|
date.mo:Expected error in mat time: "set-time-type!: time-utc is not a time record".
|
|
date.mo:Expected error in mat time: "set-time-type!: unrecognized time type time-nonsense".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure set-time-second!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure set-time-second!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure set-time-second!>".
|
|
date.mo:Expected error in mat time: "set-time-second!: 5000 is not a time record".
|
|
date.mo:Expected error in mat time: "set-time-second!: invalid number of seconds time-utc".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure set-time-nanosecond!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure set-time-nanosecond!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure set-time-nanosecond!>".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: 5000 is not a time record".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: invalid nanosecond -1".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: invalid nanosecond time-utc".
|
|
date.mo:Expected error in mat time: "set-time-nanosecond!: invalid nanosecond <int>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 2 to #<procedure current-time>".
|
|
date.mo:Expected error in mat time: "current-time: unrecognized time type time-nonsense".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure time=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure time=?>".
|
|
date.mo:Expected error in mat time: "time=?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time=?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time=?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time<?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure time<?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure time<?>".
|
|
date.mo:Expected error in mat time: "time<?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time<?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time<?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time<=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure time<=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure time<=?>".
|
|
date.mo:Expected error in mat time: "time<=?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time<=?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time<=?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time>?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure time>?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure time>?>".
|
|
date.mo:Expected error in mat time: "time>?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time>?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time>?: types of <time> and <time> differ".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 0 to #<procedure time>=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 1 to #<procedure time>=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 3 to #<procedure time>=?>".
|
|
date.mo:Expected error in mat time: "time>=?: 3 is not a time record".
|
|
date.mo:Expected error in mat time: "time>=?: #<procedure car> is not a time record".
|
|
date.mo:Expected error in mat time: "time>=?: types of <time> and <time> differ".
|
|
***************
|
|
*** 10545,10558 ****
|
|
date.mo:Expected error in mat time: "add-duration: <time> does not have type time-duration".
|
|
date.mo:Expected error in mat time: "subtract-duration: <time> does not have type time-duration".
|
|
date.mo:Expected error in mat time: "copy-time: <date> is not a time record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0 0)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0 0 0)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0 0 0 0)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0 0 0 0 1)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0 0 0 0 1 ...)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (make-date 0 0 0 0 1 ...)".
|
|
date.mo:Expected error in mat date: "make-date: invalid nanosecond -1".
|
|
date.mo:Expected error in mat date: "make-date: invalid nanosecond <int>".
|
|
date.mo:Expected error in mat date: "make-date: invalid nanosecond zero".
|
|
--- 10545,10558 ----
|
|
date.mo:Expected error in mat time: "add-duration: <time> does not have type time-duration".
|
|
date.mo:Expected error in mat time: "subtract-duration: <time> does not have type time-duration".
|
|
date.mo:Expected error in mat time: "copy-time: <date> is not a time record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 1 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 3 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 4 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 5 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 6 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 9 to #<procedure make-date>".
|
|
date.mo:Expected error in mat date: "make-date: invalid nanosecond -1".
|
|
date.mo:Expected error in mat date: "make-date: invalid nanosecond <int>".
|
|
date.mo:Expected error in mat date: "make-date: invalid nanosecond zero".
|
|
***************
|
|
*** 10578,10638 ****
|
|
date.mo:Expected error in mat date: "make-date: invalid time-zone offset 90000".
|
|
date.mo:Expected error in mat date: "make-date: invalid time-zone offset est".
|
|
date.mo:Expected error in mat date: "make-date: invalid time-zone offset "est"".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date?)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date? #f 3)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-nanosecond)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-nanosecond $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-nanosecond: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-nanosecond: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-nanosecond)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-nanosecond $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-nanosecond: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-nanosecond: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-second)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-second $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-second: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-second: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-minute)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-minute $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-minute: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-minute: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-hour)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-hour $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-hour: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-hour: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-day)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-day $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-day: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-day: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-month)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-month $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-month: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-month: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-year)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-year $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-year: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-year: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-week-day)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-week-day $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-week-day: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-week-day: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-year-day)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-year-day $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-year-day: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-year-day: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-dst?)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-dst? $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-dst?: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-dst?: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-zone-offset)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-zone-offset $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-zone-offset: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-zone-offset: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-zone-name)".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (date-zone-name $date-d1 #t)".
|
|
date.mo:Expected error in mat date: "date-zone-name: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-zone-name: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect argument count in call (current-date 0 #t)".
|
|
date.mo:Expected error in mat date: "current-date: invalid time-zone offset -90000".
|
|
date.mo:Expected error in mat date: "current-date: invalid time-zone offset 90000".
|
|
date.mo:Expected error in mat conversions/sleep: "date->time-utc: <time> is not a date record".
|
|
--- 10578,10638 ----
|
|
date.mo:Expected error in mat date: "make-date: invalid time-zone offset 90000".
|
|
date.mo:Expected error in mat date: "make-date: invalid time-zone offset est".
|
|
date.mo:Expected error in mat date: "make-date: invalid time-zone offset "est"".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date?>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date?>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-nanosecond>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-nanosecond>".
|
|
date.mo:Expected error in mat date: "date-nanosecond: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-nanosecond: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-nanosecond>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-nanosecond>".
|
|
date.mo:Expected error in mat date: "date-nanosecond: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-nanosecond: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-second>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-second>".
|
|
date.mo:Expected error in mat date: "date-second: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-second: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-minute>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-minute>".
|
|
date.mo:Expected error in mat date: "date-minute: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-minute: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-hour>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-hour>".
|
|
date.mo:Expected error in mat date: "date-hour: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-hour: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-day>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-day>".
|
|
date.mo:Expected error in mat date: "date-day: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-day: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-month>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-month>".
|
|
date.mo:Expected error in mat date: "date-month: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-month: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-year>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-year>".
|
|
date.mo:Expected error in mat date: "date-year: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-year: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-week-day>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-week-day>".
|
|
date.mo:Expected error in mat date: "date-week-day: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-week-day: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-year-day>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-year-day>".
|
|
date.mo:Expected error in mat date: "date-year-day: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-year-day: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-dst?>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-dst?>".
|
|
date.mo:Expected error in mat date: "date-dst?: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-dst?: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-zone-offset>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-zone-offset>".
|
|
date.mo:Expected error in mat date: "date-zone-offset: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-zone-offset: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 0 to #<procedure date-zone-name>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure date-zone-name>".
|
|
date.mo:Expected error in mat date: "date-zone-name: 17 is not a date record".
|
|
date.mo:Expected error in mat date: "date-zone-name: <time> is not a date record".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 2 to #<procedure current-date>".
|
|
date.mo:Expected error in mat date: "current-date: invalid time-zone offset -90000".
|
|
date.mo:Expected error in mat date: "current-date: invalid time-zone offset 90000".
|
|
date.mo:Expected error in mat conversions/sleep: "date->time-utc: <time> is not a date record".
|