
- added invoke-library syntax.ss, primdata.ss, 8.ms, root-experr*, libraries.stex, release_notes.stex - updated the date release_notes.stex - libraries contained within a whole program or library are now marked pending before their invoke code is run so that invoke cycles are reported as such rather than as attempts to invoke while still loading. compile.ss, syntax.ss, primdata.ss, 7.ms, root-experr* - the library manager now protects against unbound references from separately compiled libraries or programs to identifiers ostensibly but not actually exported by (invisible) libraries that exist only locally within a whole program. this is done by marking the invisibility of the library in the library-info and propagating it to libdesc records; the latter is checked upon library import, visit, and invoke as well as by verify-loadability. the import and visit code of each invisible no longer complains about invisibility since it shouldn't be reachable. syntax.ss, compile.ss, expand-lang.ss, 7.ms, 8.ms, root-experr*, patch* - documented that compile-whole-xxx's linearization of the library initialization code based on static dependencies might not work for dynamic dependencies. system.stex - optimized bignum right shifts so the code (1) doesn't look at shifted-off bigits if the bignum is positive, since it doesn't need to know in that case if any bits are set; (2) doesn't look at shifted-off bigits if the bignum is negative if it determines that at least one bit is set in the bits shifted off the low-order partially retained bigit; (3) quits looking, if it must look, for one bits as soon as it finds one; (4) looks from both ends under the assumption that set bits, if any, are most likely to be found toward the high or low end of the bignum rather than just in the middle; and (5) doesn't copy the retained bigits and then shift; rather shifts as it copies. This leads to dramatic improvements when the shift count is large and often significant improvements otherwise. number.c, 5_3.ms, release_notes.stex - threaded tc argument through to all calls to S_bignum and S_trunc_rem so they don't have to call get_thread_context() when it might already have been called. alloc.c, number.c, fasl.c, print.c, prim5.c, externs.h - added an expand-primitive handler to partially inline integer?. cpnanopass.ss - added some special cases for basic arithmetic operations (+, -, *, /, quotient, remainder, and the div/div0/mod/mod0 operations) to avoid doing unnecessary work for large bignums when the result will be zero (e.g,. multiplying by 0), the same as one of the inputs (e.g., adding 0 or multiplying by 1), or the additive inverse of one of the inputs (e.g., subtracting from 0, dividing by -1). This can have a major beneficial affect when operating on large bignums in the cases handled. also converted some uses of / into integer/ where going through the former would just add overhead without the possibility of optimization. 5_3.ss, number.c, externs.h, prim5.c, 5_3.ms, root-experr, patch*, release_notes.stex - added a queue to hold pending signals for which handlers have been registered via register-signal-handler so up to 63 (configurable in the source code) unhandled signals are buffered before the handler has to start dropping them. cmacros.ss, library.ss, prims.ss, primdata.ss, schsig.c, externs.h, prim5.c, thread.c, gc.c, unix.ms, system.stex, release_notes.stex - bytevector-compress now selects the level of compression based on the compress-level parameter. Prior to this it always used a default setting for compression. the compress-level parameter can now take on the new minimum in addition to low, medium, high, and maximum. minimum is presently treated the same as low except in the case of lz4 bytevector compression, where it results in the use of LZ4_compress_default rather than the slower but more effective LZ4_compress_HC. cmacros,ss, back.ss, compress_io.c, new_io.c, externs.h, bytevector.ms, mats/Mf-base, root-experr* io.stex, objects.stex, release_notes.stex original commit: 72d90e4c67849908da900d0b6249a1dedb5f8c7f
6210 lines
578 KiB
Plaintext
6210 lines
578 KiB
Plaintext
*** errors-compile-0-f-f-f 2020-02-11 17:27:14.000000000 -0800
|
|
--- errors-compile-0-t-f-f 2020-02-11 17:02:13.000000000 -0800
|
|
***************
|
|
*** 146,152 ****
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 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".
|
|
--- 146,152 ----
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
|
|
3.mo:Expected error in mat case-lambda: "incorrect number of arguments 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".
|
|
***************
|
|
*** 244,255 ****
|
|
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".
|
|
--- 244,255 ----
|
|
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 to #<procedure>".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments to #<procedure>".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments to #<procedure>".
|
|
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments 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".
|
|
***************
|
|
*** 286,293 ****
|
|
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".
|
|
--- 286,293 ----
|
|
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 to #<procedure apply>".
|
|
! 4.mo:Expected error in mat apply: "incorrect number of arguments 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".
|
|
***************
|
|
*** 589,596 ****
|
|
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".
|
|
--- 589,596 ----
|
|
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 to #<procedure boolean=?>".
|
|
! 5_1.mo:Expected error in mat boolean=?: "incorrect number of arguments 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".
|
|
***************
|
|
*** 600,607 ****
|
|
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".
|
|
--- 600,607 ----
|
|
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 to #<procedure symbol=?>".
|
|
! 5_1.mo:Expected error in mat symbol=?: "incorrect number of arguments 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".
|
|
***************
|
|
*** 643,650 ****
|
|
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)".
|
|
--- 643,650 ----
|
|
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 to #<procedure list*>".
|
|
! 5_2.mo:Expected error in mat cons*: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 731,743 ****
|
|
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".
|
|
--- 731,743 ----
|
|
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 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 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".
|
|
***************
|
|
*** 750,767 ****
|
|
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)".
|
|
--- 750,767 ----
|
|
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 to #<procedure memq>".
|
|
! 5_2.mo:Expected error in mat memq: "incorrect number of arguments 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 to #<procedure memv>".
|
|
! 5_2.mo:Expected error in mat memv: "incorrect number of arguments 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 to #<procedure member>".
|
|
! 5_2.mo:Expected error in mat member: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 804,813 ****
|
|
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".
|
|
--- 804,813 ----
|
|
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 to #<procedure sort>".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments to #<procedure sort>".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments to #<procedure sort>".
|
|
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments 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".
|
|
***************
|
|
*** 816,825 ****
|
|
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".
|
|
--- 816,825 ----
|
|
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 to #<procedure list-sort>".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments to #<procedure list-sort>".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments to #<procedure list-sort>".
|
|
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments 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".
|
|
***************
|
|
*** 828,837 ****
|
|
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".
|
|
--- 828,837 ----
|
|
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 to #<procedure sort!>".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments to #<procedure sort!>".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments to #<procedure sort!>".
|
|
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments 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".
|
|
***************
|
|
*** 860,877 ****
|
|
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".
|
|
--- 860,877 ----
|
|
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 to #<procedure iota>".
|
|
! 5_2.mo:Expected error in mat iota: "incorrect number of arguments 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 to #<procedure enumerate>".
|
|
! 5_2.mo:Expected error in mat enumerate: "incorrect number of arguments 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 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".
|
|
***************
|
|
*** 882,888 ****
|
|
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".
|
|
--- 882,888 ----
|
|
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 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".
|
|
***************
|
|
*** 918,924 ****
|
|
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".
|
|
--- 918,924 ----
|
|
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 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".
|
|
***************
|
|
*** 927,933 ****
|
|
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".
|
|
--- 927,933 ----
|
|
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 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".
|
|
***************
|
|
*** 947,953 ****
|
|
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".
|
|
--- 947,953 ----
|
|
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 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".
|
|
***************
|
|
*** 967,973 ****
|
|
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".
|
|
--- 967,973 ----
|
|
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 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".
|
|
***************
|
|
*** 987,993 ****
|
|
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".
|
|
--- 987,993 ----
|
|
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 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".
|
|
***************
|
|
*** 1007,1014 ****
|
|
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".
|
|
--- 1007,1014 ----
|
|
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 to #<procedure =>".
|
|
! 5_3.mo:Expected error in mat r6rs:=: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1016,1023 ****
|
|
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".
|
|
--- 1016,1023 ----
|
|
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 to #<procedure <>".
|
|
! 5_3.mo:Expected error in mat r6rs:<: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1028,1035 ****
|
|
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".
|
|
--- 1028,1035 ----
|
|
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 to #<procedure <=>".
|
|
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1040,1047 ****
|
|
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".
|
|
--- 1040,1047 ----
|
|
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 to #<procedure >>".
|
|
! 5_3.mo:Expected error in mat r6rs:>: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1052,1059 ****
|
|
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".
|
|
--- 1052,1059 ----
|
|
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 to #<procedure >=>".
|
|
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1073,1079 ****
|
|
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".
|
|
--- 1073,1079 ----
|
|
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 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".
|
|
***************
|
|
*** 1086,1092 ****
|
|
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".
|
|
--- 1086,1092 ----
|
|
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 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".
|
|
***************
|
|
*** 1100,1167 ****
|
|
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".
|
|
--- 1100,1167 ----
|
|
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 to #<procedure zero?>".
|
|
! 5_3.mo:Expected error in mat zero?: "incorrect number of arguments 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 to #<procedure positive?>".
|
|
! 5_3.mo:Expected error in mat positive?: "incorrect number of arguments 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 to #<procedure nonpositive?>".
|
|
! 5_3.mo:Expected error in mat nonpositive?: "incorrect number of arguments 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 to #<procedure negative?>".
|
|
! 5_3.mo:Expected error in mat negative?: "incorrect number of arguments 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 to #<procedure nonnegative?>".
|
|
! 5_3.mo:Expected error in mat nonnegative?: "incorrect number of arguments 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 to #<procedure even?>".
|
|
! 5_3.mo:Expected error in mat even?: "incorrect number of arguments 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 to #<procedure odd?>".
|
|
! 5_3.mo:Expected error in mat odd?: "incorrect number of arguments 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 to #<procedure 1+>".
|
|
! 5_3.mo:Expected error in mat \x31;+: "incorrect number of arguments 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 to #<procedure add1>".
|
|
! 5_3.mo:Expected error in mat add1: "incorrect number of arguments 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 to #<procedure 1->".
|
|
! 5_3.mo:Expected error in mat \x31;-: "incorrect number of arguments 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 to #<procedure sub1>".
|
|
! 5_3.mo:Expected error in mat sub1: "incorrect number of arguments 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 to #<procedure -1+>".
|
|
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect number of arguments 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 to #<procedure quotient>".
|
|
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments 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 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".
|
|
***************
|
|
*** 1174,1183 ****
|
|
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".
|
|
--- 1174,1183 ----
|
|
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 to #<procedure remainder>".
|
|
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments 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 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".
|
|
***************
|
|
*** 1188,1196 ****
|
|
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".
|
|
--- 1188,1196 ----
|
|
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 to #<procedure modulo>".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments to #<procedure modulo>".
|
|
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1200,1245 ****
|
|
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".
|
|
--- 1200,1245 ----
|
|
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 to #<procedure truncate>".
|
|
! 5_3.mo:Expected error in mat truncate: "incorrect number of arguments 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 to #<procedure floor>".
|
|
! 5_3.mo:Expected error in mat floor: "incorrect number of arguments 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 to #<procedure ceiling>".
|
|
! 5_3.mo:Expected error in mat ceiling: "incorrect number of arguments 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 to #<procedure round>".
|
|
! 5_3.mo:Expected error in mat round: "incorrect number of arguments 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 to #<procedure abs>".
|
|
! 5_3.mo:Expected error in mat abs: "incorrect number of arguments 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 to #<procedure magnitude>".
|
|
! 5_3.mo:Expected error in mat magnitude: "incorrect number of arguments 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 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 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".
|
|
***************
|
|
*** 1298,1320 ****
|
|
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".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and 0+1i".
|
|
! 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".
|
|
--- 1298,1320 ----
|
|
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 to #<procedure expt>".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments to #<procedure expt>".
|
|
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments 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".
|
|
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and 0+1i".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
|
|
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments 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 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 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".
|
|
***************
|
|
*** 1327,1365 ****
|
|
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument 0".
|
|
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument -1".
|
|
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument <int>".
|
|
! 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".
|
|
--- 1327,1365 ----
|
|
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument 0".
|
|
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument -1".
|
|
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument <int>".
|
|
! 5_3.mo:Expected error in mat inexact: "incorrect number of arguments to #<procedure inexact>".
|
|
! 5_3.mo:Expected error in mat inexact: "incorrect number of arguments 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 to #<procedure exact>".
|
|
! 5_3.mo:Expected error in mat exact: "incorrect number of arguments 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 to #<procedure rationalize>".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments to #<procedure rationalize>".
|
|
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments 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 to #<procedure numerator>".
|
|
! 5_3.mo:Expected error in mat numerator: "incorrect number of arguments 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 to #<procedure denominator>".
|
|
! 5_3.mo:Expected error in mat denominator: "incorrect number of arguments 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 to #<procedure real-part>".
|
|
! 5_3.mo:Expected error in mat real-part: "incorrect number of arguments 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 to #<procedure imag-part>".
|
|
! 5_3.mo:Expected error in mat imag-part: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1369,1445 ****
|
|
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".
|
|
--- 1369,1445 ----
|
|
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 to #<procedure angle>".
|
|
! 5_3.mo:Expected error in mat angle: "incorrect number of arguments 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 to #<procedure sqrt>".
|
|
! 5_3.mo:Expected error in mat sqrt: "incorrect number of arguments 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 to #<procedure isqrt>".
|
|
! 5_3.mo:Expected error in mat isqrt: "incorrect number of arguments 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 to #<procedure exp>".
|
|
! 5_3.mo:Expected error in mat exp: "incorrect number of arguments 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 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 to #<procedure sin>".
|
|
! 5_3.mo:Expected error in mat sin: "incorrect number of arguments 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 to #<procedure cos>".
|
|
! 5_3.mo:Expected error in mat cos: "incorrect number of arguments 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 to #<procedure tan>".
|
|
! 5_3.mo:Expected error in mat tan: "incorrect number of arguments 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 to #<procedure asin>".
|
|
! 5_3.mo:Expected error in mat asin: "incorrect number of arguments 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 to #<procedure acos>".
|
|
! 5_3.mo:Expected error in mat acos: "incorrect number of arguments 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 to #<procedure atan>".
|
|
! 5_3.mo:Expected error in mat atan: "incorrect number of arguments 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 to #<procedure asinh>".
|
|
! 5_3.mo:Expected error in mat asinh: "incorrect number of arguments 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 to #<procedure acosh>".
|
|
! 5_3.mo:Expected error in mat acosh: "incorrect number of arguments 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 to #<procedure atanh>".
|
|
! 5_3.mo:Expected error in mat atanh: "incorrect number of arguments 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 to #<procedure ash>".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect number of arguments to #<procedure ash>".
|
|
! 5_3.mo:Expected error in mat ash: "incorrect number of arguments 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 to #<procedure bitwise-arithmetic-shift>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect number of arguments to #<procedure bitwise-arithmetic-shift>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect number of arguments 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 to #<procedure bitwise-arithmetic-shift-left>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect number of arguments to #<procedure bitwise-arithmetic-shift-left>".
|
|
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect number of arguments 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 to #<procedure bitwise-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments to #<procedure bitwise-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments to #<procedure bitwise-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1450,1460 ****
|
|
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".
|
|
--- 1450,1460 ----
|
|
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 to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments to #<procedure bitwise-copy-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1467,1477 ****
|
|
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".
|
|
--- 1467,1477 ----
|
|
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 to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments to #<procedure bitwise-rotate-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-rotate-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1485,1494 ****
|
|
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".
|
|
--- 1485,1494 ----
|
|
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 to #<procedure bitwise-reverse-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments to #<procedure bitwise-reverse-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments to #<procedure bitwise-reverse-bit-field>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1499,1522 ****
|
|
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 to #<procedure $quotient-remainder>".
|
|
--- 1499,1522 ----
|
|
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 to #<procedure exact-integer-sqrt>".
|
|
! 5_3.mo:Expected error in mat exact-integer-sqrt: "incorrect number of arguments 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 to #<procedure integer-length>".
|
|
! 5_3.mo:Expected error in mat integer-length: "incorrect number of arguments 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 to #<procedure bitwise-length>".
|
|
! 5_3.mo:Expected error in mat bitwise-length: "incorrect number of arguments 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 to #<procedure bitwise-bit-count>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-count: "incorrect number of arguments 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 to #<procedure bitwise-first-bit-set>".
|
|
! 5_3.mo:Expected error in mat bitwise-first-bit-set: "incorrect number of arguments 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 to #<procedure $quotient-remainder>".
|
|
***************
|
|
*** 1642,1697 ****
|
|
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".
|
|
--- 1642,1697 ----
|
|
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 to #<procedure logtest>".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect number of arguments to #<procedure logtest>".
|
|
! 5_3.mo:Expected error in mat logtest: "incorrect number of arguments 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 to #<procedure bitwise-if>".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments to #<procedure bitwise-if>".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments to #<procedure bitwise-if>".
|
|
! 5_3.mo:Expected error in mat bitwise-if: "incorrect number of arguments 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 to #<procedure logbit?>".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect number of arguments to #<procedure logbit?>".
|
|
! 5_3.mo:Expected error in mat logbit?: "incorrect number of arguments 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 to #<procedure bitwise-bit-set?>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect number of arguments to #<procedure bitwise-bit-set?>".
|
|
! 5_3.mo:Expected error in mat bitwise-bit-set?: "incorrect number of arguments 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 to #<procedure logbit0>".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect number of arguments to #<procedure logbit0>".
|
|
! 5_3.mo:Expected error in mat logbit0: "incorrect number of arguments 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 to #<procedure logbit1>".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect number of arguments to #<procedure logbit1>".
|
|
! 5_3.mo:Expected error in mat logbit1: "incorrect number of arguments 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 to #<procedure bitwise-copy-bit>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments to #<procedure bitwise-copy-bit>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments to #<procedure bitwise-copy-bit>".
|
|
! 5_3.mo:Expected error in mat bitwise-copy-bit: "incorrect number of arguments 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 to #<procedure real->flonum>".
|
|
! 5_3.mo:Expected error in mat real->flonum: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1803,1963 ****
|
|
5_3.mo:Expected error in mat special-cases: "+: bogus is not a number".
|
|
5_3.mo:Expected error in mat special-cases: "-: bogus is not a number".
|
|
5_3.mo:Expected error in mat special-cases: "-: bogus is not a number".
|
|
! 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".
|
|
--- 1803,1963 ----
|
|
5_3.mo:Expected error in mat special-cases: "+: bogus is not a number".
|
|
5_3.mo:Expected error in mat special-cases: "-: bogus is not a number".
|
|
5_3.mo:Expected error in mat special-cases: "-: bogus is not a number".
|
|
! 5_4.mo:Expected error in mat char=?/char-ci=?: "incorrect number of arguments 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 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 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 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 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 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 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 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 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 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 to #<procedure char=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect number of arguments 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 to #<procedure char-ci=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char=?/r6rs:char-ci=?: "incorrect number of arguments 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 to #<procedure char<?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect number of arguments 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 to #<procedure char-ci<?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<?/r6rs:char-ci<?: "incorrect number of arguments 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 to #<procedure char>?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect number of arguments 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 to #<procedure char-ci>?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>?/r6rs:char-ci>?: "incorrect number of arguments 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 to #<procedure char<=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect number of arguments 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 to #<procedure char-ci<=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char<=?/r6rs:char-ci<=?: "incorrect number of arguments 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 to #<procedure char>=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect number of arguments 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 to #<procedure char-ci>=?>".
|
|
! 5_4.mo:Expected error in mat r6rs:char>=?/r6rs:char-ci>=?: "incorrect number of arguments 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 to #<procedure char-alphabetic?>".
|
|
! 5_4.mo:Expected error in mat char-alphabetic?: "incorrect number of arguments 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 to #<procedure char-numeric?>".
|
|
! 5_4.mo:Expected error in mat char-numeric?: "incorrect number of arguments 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 to #<procedure char-lower-case?>".
|
|
! 5_4.mo:Expected error in mat char-lower-case?: "incorrect number of arguments 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 to #<procedure char-upper-case?>".
|
|
! 5_4.mo:Expected error in mat char-upper-case?: "incorrect number of arguments 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 to #<procedure char-title-case?>".
|
|
! 5_4.mo:Expected error in mat char-title-case?: "incorrect number of arguments 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 to #<procedure char-general-category>".
|
|
! 5_4.mo:Expected error in mat char-general-category: "incorrect number of arguments 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 to #<procedure char-whitespace?>".
|
|
! 5_4.mo:Expected error in mat char-whitespace?: "incorrect number of arguments 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 to #<procedure char-upcase>".
|
|
! 5_4.mo:Expected error in mat char-upcase: "incorrect number of arguments 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 to #<procedure char-titlecase>".
|
|
! 5_4.mo:Expected error in mat char-titlecase: "incorrect number of arguments 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 to #<procedure char-downcase>".
|
|
! 5_4.mo:Expected error in mat char-downcase: "incorrect number of arguments 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 to #<procedure char-foldcase>".
|
|
! 5_4.mo:Expected error in mat char-foldcase: "incorrect number of arguments 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 to #<procedure integer->char>".
|
|
! 5_4.mo:Expected error in mat integer->char: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1976,1988 ****
|
|
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".
|
|
--- 1976,1988 ----
|
|
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 to #<procedure char->integer>".
|
|
! 5_4.mo:Expected error in mat char->integer: "incorrect number of arguments 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 to #<procedure string-for-each>".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect number of arguments to #<procedure string-for-each>".
|
|
! 5_4.mo:Expected error in mat string-for-each: "incorrect number of arguments 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".
|
|
***************
|
|
*** 1997,2142 ****
|
|
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".
|
|
--- 1997,2142 ----
|
|
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 to #<procedure string-upcase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 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 to #<procedure string-downcase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 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 to #<procedure string-titlecase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 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 to #<procedure string-foldcase>".
|
|
! 5_4.mo:Expected error in mat string-xcase-errors: "incorrect number of arguments 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 to #<procedure string-normalize-nfd>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 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 to #<procedure string-normalize-nfkd>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 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 to #<procedure string-normalize-nfc>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 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 to #<procedure string-normalize-nfkc>".
|
|
! 5_4.mo:Expected error in mat normalization-tests: "incorrect number of arguments 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 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 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 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 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 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 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 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 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 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 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 to #<procedure string=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect number of arguments 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 to #<procedure string-ci=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string=?/r6rs:string-ci=?: "incorrect number of arguments 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 to #<procedure string<?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect number of arguments 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 to #<procedure string-ci<?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<?/r6rs:string-ci<?: "incorrect number of arguments 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 to #<procedure string>?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect number of arguments 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 to #<procedure string-ci>?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>?/r6rs:string-ci>?: "incorrect number of arguments 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 to #<procedure string<=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect number of arguments 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 to #<procedure string-ci<=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string<=?/r6rs:string-ci<=?: "incorrect number of arguments 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 to #<procedure string>=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect number of arguments 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 to #<procedure string-ci>=?>".
|
|
! 5_5.mo:Expected error in mat r6rs:string>=?/r6rs:string-ci>=?: "incorrect number of arguments 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".
|
|
***************
|
|
*** 2144,2182 ****
|
|
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".
|
|
--- 2144,2182 ----
|
|
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 to #<procedure make-string>".
|
|
! 5_5.mo:Expected error in mat make-string: "incorrect number of arguments 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 to #<procedure string-length>".
|
|
! 5_5.mo:Expected error in mat string-length: "incorrect number of arguments 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 to #<procedure string-ref>".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect number of arguments to #<procedure string-ref>".
|
|
! 5_5.mo:Expected error in mat string-ref: "incorrect number of arguments 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 to #<procedure string-set!>".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments to #<procedure string-set!>".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments to #<procedure string-set!>".
|
|
! 5_5.mo:Expected error in mat string-set!: "incorrect number of arguments 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 to #<procedure string-copy>".
|
|
! 5_5.mo:Expected error in mat string-copy: "incorrect number of arguments 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 to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments to #<procedure string-copy!>".
|
|
! 5_5.mo:Expected error in mat string-copy!: "incorrect number of arguments 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".
|
|
***************
|
|
*** 2200,2208 ****
|
|
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"".
|
|
--- 2200,2208 ----
|
|
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 to #<procedure string-truncate!>".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect number of arguments to #<procedure string-truncate!>".
|
|
! 5_5.mo:Expected error in mat string-truncate!: "incorrect number of arguments 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"".
|
|
***************
|
|
*** 2214,2266 ****
|
|
5_5.mo:Expected error in mat string-append: "string-append: b is not a string".
|
|
5_5.mo:Expected error in mat string-append: "string-append: b is not a string".
|
|
5_5.mo:Expected error in mat string-append: "string-copy: a 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".
|
|
--- 2214,2266 ----
|
|
5_5.mo:Expected error in mat string-append: "string-append: b is not a string".
|
|
5_5.mo:Expected error in mat string-append: "string-append: b is not a string".
|
|
5_5.mo:Expected error in mat string-append: "string-copy: a is not a string".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments to #<procedure substring>".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments to #<procedure substring>".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments to #<procedure substring>".
|
|
! 5_5.mo:Expected error in mat substring: "incorrect number of arguments 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 to #<procedure string-fill!>".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect number of arguments to #<procedure string-fill!>".
|
|
! 5_5.mo:Expected error in mat string-fill!: "incorrect number of arguments 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 to #<procedure substring-fill!>".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments to #<procedure substring-fill!>".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments to #<procedure substring-fill!>".
|
|
! 5_5.mo:Expected error in mat substring-fill!: "incorrect number of arguments 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 to #<procedure list->string>".
|
|
! 5_5.mo:Expected error in mat list->string: "incorrect number of arguments 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 to #<procedure string->list>".
|
|
! 5_5.mo:Expected error in mat string->list: "incorrect number of arguments 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 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 to #<procedure make-bytevector>".
|
|
! bytevector.mo:Expected error in mat make-bytevector: "incorrect number of arguments 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".
|
|
***************
|
|
*** 2277,2306 ****
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value -500".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 1e100".
|
|
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)".
|
|
--- 2277,2306 ----
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value -500".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 1e100".
|
|
bytevector.mo:Expected error in mat bytevector: "bytevector: invalid value 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000".
|
|
! bytevector.mo:Expected error in mat bytevector-length: "incorrect number of arguments to #<procedure bytevector-length>".
|
|
! bytevector.mo:Expected error in mat bytevector-length: "incorrect number of arguments 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 to #<procedure bytevector-s8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect number of arguments to #<procedure bytevector-s8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-ref: "incorrect number of arguments 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 to #<procedure bytevector-u8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect number of arguments to #<procedure bytevector-u8-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-ref: "incorrect number of arguments 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 to #<procedure bytevector-s8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments to #<procedure bytevector-s8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments to #<procedure bytevector-s8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s8-set!: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 2309,2318 ****
|
|
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)".
|
|
--- 2309,2318 ----
|
|
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 to #<procedure bytevector-u8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments to #<procedure bytevector-u8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments to #<procedure bytevector-u8-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u8-set!: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 2321,2329 ****
|
|
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)".
|
|
--- 2321,2329 ----
|
|
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 to #<procedure bytevector-s16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect number of arguments to #<procedure bytevector-s16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-ref: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 2331,2339 ****
|
|
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)".
|
|
--- 2331,2339 ----
|
|
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 to #<procedure bytevector-u16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect number of arguments to #<procedure bytevector-u16-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-ref: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 2341,2350 ****
|
|
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 ...)".
|
|
--- 2341,2350 ----
|
|
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 to #<procedure bytevector-s16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments to #<procedure bytevector-s16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments to #<procedure bytevector-s16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2358,2367 ****
|
|
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 ...)".
|
|
--- 2358,2367 ----
|
|
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 to #<procedure bytevector-u16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments to #<procedure bytevector-u16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments to #<procedure bytevector-u16-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2375,2383 ****
|
|
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)".
|
|
--- 2375,2383 ----
|
|
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 to #<procedure bytevector-s16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect number of arguments to #<procedure bytevector-s16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-ref: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 2387,2395 ****
|
|
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)".
|
|
--- 2387,2395 ----
|
|
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 to #<procedure bytevector-u16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect number of arguments to #<procedure bytevector-u16-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-ref: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 2399,2408 ****
|
|
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 ...)".
|
|
--- 2399,2408 ----
|
|
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 to #<procedure bytevector-s16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments to #<procedure bytevector-s16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments to #<procedure bytevector-s16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s16-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2418,2427 ****
|
|
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 ...)".
|
|
--- 2418,2427 ----
|
|
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 to #<procedure bytevector-u16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments to #<procedure bytevector-u16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments to #<procedure bytevector-u16-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u16-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2437,2446 ****
|
|
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 ...)".
|
|
--- 2437,2446 ----
|
|
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 to #<procedure bytevector-s24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments to #<procedure bytevector-s24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments to #<procedure bytevector-s24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2450,2459 ****
|
|
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 ...)".
|
|
--- 2450,2459 ----
|
|
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 to #<procedure bytevector-u24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments to #<procedure bytevector-u24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments to #<procedure bytevector-u24-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2463,2473 ****
|
|
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 ...)".
|
|
--- 2463,2473 ----
|
|
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 to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments to #<procedure bytevector-s24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s24-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2481,2491 ****
|
|
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 ...)".
|
|
--- 2481,2491 ----
|
|
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 to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments to #<procedure bytevector-u24-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u24-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2499,2507 ****
|
|
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 ...)".
|
|
--- 2499,2507 ----
|
|
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 to #<procedure bytevector-s32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect number of arguments to #<procedure bytevector-s32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2513,2521 ****
|
|
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 ...)".
|
|
--- 2513,2521 ----
|
|
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 to #<procedure bytevector-u32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect number of arguments to #<procedure bytevector-u32-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2527,2536 ****
|
|
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 ...)".
|
|
--- 2527,2536 ----
|
|
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 to #<procedure bytevector-s32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments to #<procedure bytevector-s32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments to #<procedure bytevector-s32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2557,2566 ****
|
|
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 ...)".
|
|
--- 2557,2566 ----
|
|
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 to #<procedure bytevector-u32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments to #<procedure bytevector-u32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments to #<procedure bytevector-u32-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2587,2596 ****
|
|
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 ...)".
|
|
--- 2587,2596 ----
|
|
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 to #<procedure bytevector-s32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments to #<procedure bytevector-s32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments to #<procedure bytevector-s32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2600,2609 ****
|
|
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 ...)".
|
|
--- 2600,2609 ----
|
|
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 to #<procedure bytevector-u32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments to #<procedure bytevector-u32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments to #<procedure bytevector-u32-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2613,2623 ****
|
|
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 ...)".
|
|
--- 2613,2623 ----
|
|
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 to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments to #<procedure bytevector-s32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s32-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2632,2642 ****
|
|
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 ...)".
|
|
--- 2632,2642 ----
|
|
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 to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments to #<procedure bytevector-u32-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u32-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2651,2660 ****
|
|
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 ...)".
|
|
--- 2651,2660 ----
|
|
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 to #<procedure bytevector-s40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments to #<procedure bytevector-s40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments to #<procedure bytevector-s40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2664,2673 ****
|
|
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 ...)".
|
|
--- 2664,2673 ----
|
|
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 to #<procedure bytevector-u40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments to #<procedure bytevector-u40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments to #<procedure bytevector-u40-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2677,2687 ****
|
|
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 ...)".
|
|
--- 2677,2687 ----
|
|
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 to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments to #<procedure bytevector-s40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s40-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2695,2705 ****
|
|
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 ...)".
|
|
--- 2695,2705 ----
|
|
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 to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments to #<procedure bytevector-u40-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u40-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2713,2722 ****
|
|
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 ...)".
|
|
--- 2713,2722 ----
|
|
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 to #<procedure bytevector-s48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments to #<procedure bytevector-s48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments to #<procedure bytevector-s48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2726,2735 ****
|
|
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 ...)".
|
|
--- 2726,2735 ----
|
|
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 to #<procedure bytevector-u48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments to #<procedure bytevector-u48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments to #<procedure bytevector-u48-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2739,2749 ****
|
|
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 ...)".
|
|
--- 2739,2749 ----
|
|
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 to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments to #<procedure bytevector-s48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s48-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2757,2767 ****
|
|
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 ...)".
|
|
--- 2757,2767 ----
|
|
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 to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments to #<procedure bytevector-u48-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u48-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2775,2784 ****
|
|
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 ...)".
|
|
--- 2775,2784 ----
|
|
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 to #<procedure bytevector-s56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments to #<procedure bytevector-s56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments to #<procedure bytevector-s56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2788,2797 ****
|
|
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 ...)".
|
|
--- 2788,2797 ----
|
|
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 to #<procedure bytevector-u56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments to #<procedure bytevector-u56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments to #<procedure bytevector-u56-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2801,2811 ****
|
|
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 ...)".
|
|
--- 2801,2811 ----
|
|
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 to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments to #<procedure bytevector-s56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s56-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2819,2829 ****
|
|
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 ...)".
|
|
--- 2819,2829 ----
|
|
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 to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments to #<procedure bytevector-u56-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u56-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2837,2845 ****
|
|
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 ...)".
|
|
--- 2837,2845 ----
|
|
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 to #<procedure bytevector-s64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect number of arguments to #<procedure bytevector-s64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2869,2877 ****
|
|
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 ...)".
|
|
--- 2869,2877 ----
|
|
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 to #<procedure bytevector-u64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect number of arguments to #<procedure bytevector-u64-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2901,2910 ****
|
|
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 ...)".
|
|
--- 2901,2910 ----
|
|
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 to #<procedure bytevector-s64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments to #<procedure bytevector-s64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments to #<procedure bytevector-s64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2938,2947 ****
|
|
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 ...)".
|
|
--- 2938,2947 ----
|
|
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 to #<procedure bytevector-u64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments to #<procedure bytevector-u64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments to #<procedure bytevector-u64-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2975,2984 ****
|
|
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 ...)".
|
|
--- 2975,2984 ----
|
|
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 to #<procedure bytevector-s64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments to #<procedure bytevector-s64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments to #<procedure bytevector-s64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 2994,3003 ****
|
|
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 1e23".
|
|
! 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 ...)".
|
|
--- 2994,3003 ----
|
|
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 1e23".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments to #<procedure bytevector-u64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments to #<procedure bytevector-u64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments to #<procedure bytevector-u64-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3013,3023 ****
|
|
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 1e23".
|
|
! 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 ...)".
|
|
--- 3013,3023 ----
|
|
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 1e23".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments to #<procedure bytevector-s64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-s64-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3036,3046 ****
|
|
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 ...)".
|
|
--- 3036,3046 ----
|
|
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 to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments to #<procedure bytevector-u64-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-u64-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3059,3067 ****
|
|
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 ...)".
|
|
--- 3059,3067 ----
|
|
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 to #<procedure bytevector-ieee-single-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect number of arguments to #<procedure bytevector-ieee-single-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3097,3105 ****
|
|
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 ...)".
|
|
--- 3097,3105 ----
|
|
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 to #<procedure bytevector-ieee-double-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect number of arguments to #<procedure bytevector-ieee-double-native-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3139,3148 ****
|
|
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 ...)".
|
|
--- 3139,3148 ----
|
|
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 to #<procedure bytevector-ieee-single-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments to #<procedure bytevector-ieee-single-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments to #<procedure bytevector-ieee-single-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3176,3185 ****
|
|
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 ...)".
|
|
--- 3176,3185 ----
|
|
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 to #<procedure bytevector-ieee-double-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments to #<procedure bytevector-ieee-double-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments to #<procedure bytevector-ieee-double-native-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-native-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3225,3234 ****
|
|
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 ...)".
|
|
--- 3225,3234 ----
|
|
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 to #<procedure bytevector-ieee-single-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments to #<procedure bytevector-ieee-single-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments to #<procedure bytevector-ieee-single-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3240,3249 ****
|
|
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 ...)".
|
|
--- 3240,3249 ----
|
|
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 to #<procedure bytevector-ieee-double-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments to #<procedure bytevector-ieee-double-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments to #<procedure bytevector-ieee-double-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3259,3269 ****
|
|
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 ...)".
|
|
--- 3259,3269 ----
|
|
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 to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments to #<procedure bytevector-ieee-single-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-single-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3280,3290 ****
|
|
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 ...)".
|
|
--- 3280,3290 ----
|
|
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 to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments to #<procedure bytevector-ieee-double-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-ieee-double-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3305,3315 ****
|
|
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 ...)".
|
|
--- 3305,3315 ----
|
|
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 to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments to #<procedure bytevector-sint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3344,3354 ****
|
|
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 ...)".
|
|
--- 3344,3354 ----
|
|
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 to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments to #<procedure bytevector-uint-ref>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-ref: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3386,3397 ****
|
|
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 ...)".
|
|
--- 3386,3397 ----
|
|
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 to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments to #<procedure bytevector-sint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-sint-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3450,3461 ****
|
|
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 ...)".
|
|
--- 3450,3461 ----
|
|
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 to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments to #<procedure bytevector-uint-set!>".
|
|
! bytevector.mo:Expected error in mat bytevector-uint-set!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3514,3529 ****
|
|
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".
|
|
--- 3514,3529 ----
|
|
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 to #<procedure bytevector-copy>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy: "incorrect number of arguments 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 to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments to #<procedure bytevector-copy!>".
|
|
! bytevector.mo:Expected error in mat bytevector-copy!: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3547,3555 ****
|
|
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 ...)".
|
|
--- 3547,3555 ----
|
|
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 to #<procedure bytevector-truncate!>".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect number of arguments to #<procedure bytevector-truncate!>".
|
|
! bytevector.mo:Expected error in mat bytevector-truncate!: "incorrect number of arguments 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 ...)".
|
|
***************
|
|
*** 3557,3597 ****
|
|
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".
|
|
--- 3557,3597 ----
|
|
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 to #<procedure bytevector-fill!>".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect number of arguments to #<procedure bytevector-fill!>".
|
|
! bytevector.mo:Expected error in mat bytevector-fill!: "incorrect number of arguments 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 to #<procedure s8-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat s8-list->bytevector: "incorrect number of arguments 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 to #<procedure u8-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat u8-list->bytevector: "incorrect number of arguments 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 to #<procedure bytevector->s8-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->s8-list: "incorrect number of arguments 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 to #<procedure bytevector->u8-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->u8-list: "incorrect number of arguments 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 to #<procedure sint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect number of arguments to #<procedure sint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat sint-list->bytevector: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3630,3638 ****
|
|
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".
|
|
--- 3630,3638 ----
|
|
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 to #<procedure uint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect number of arguments to #<procedure uint-list->bytevector>".
|
|
! bytevector.mo:Expected error in mat uint-list->bytevector: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3671,3679 ****
|
|
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".
|
|
--- 3671,3679 ----
|
|
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 to #<procedure bytevector->sint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect number of arguments to #<procedure bytevector->sint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->sint-list: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3693,3701 ****
|
|
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".
|
|
--- 3693,3701 ----
|
|
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 to #<procedure bytevector->uint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect number of arguments to #<procedure bytevector->uint-list>".
|
|
! bytevector.mo:Expected error in mat bytevector->uint-list: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3715,3723 ****
|
|
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"".
|
|
--- 3715,3723 ----
|
|
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 to #<procedure bytevector=?>".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect number of arguments to #<procedure bytevector=?>".
|
|
! bytevector.mo:Expected error in mat bytevector=?: "incorrect number of arguments 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"".
|
|
***************
|
|
*** 3767,3787 ****
|
|
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)".
|
|
--- 3767,3787 ----
|
|
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 to #<procedure profile-dump>".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments to #<procedure profile-clear>".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 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 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 to #<procedure profile-dump-data>".
|
|
! profile.mo:Expected error in mat compile-profile: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 3803,3814 ****
|
|
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".
|
|
--- 3803,3814 ----
|
|
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 to #<procedure car>".
|
|
! misc.mo:Expected error in mat compiler2: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3896,3902 ****
|
|
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".
|
|
--- 3896,3902 ----
|
|
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 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".
|
|
***************
|
|
*** 3950,3957 ****
|
|
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".
|
|
--- 3950,3957 ----
|
|
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 to #<procedure apropos>".
|
|
! misc.mo:Expected error in mat apropos: "incorrect number of arguments 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".
|
|
***************
|
|
*** 3979,3987 ****
|
|
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".
|
|
--- 3979,3987 ----
|
|
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 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 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".
|
|
***************
|
|
*** 4045,4053 ****
|
|
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".
|
|
--- 4045,4053 ----
|
|
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 to #<procedure vector-map>".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect number of arguments to #<procedure vector-map>".
|
|
! 5_6.mo:Expected error in mat vector-map: "incorrect number of arguments 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".
|
|
***************
|
|
*** 4062,4070 ****
|
|
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".
|
|
--- 4062,4070 ----
|
|
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 to #<procedure vector-for-each>".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect number of arguments to #<procedure vector-for-each>".
|
|
! 5_6.mo:Expected error in mat vector-for-each: "incorrect number of arguments 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".
|
|
***************
|
|
*** 4079,4096 ****
|
|
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".
|
|
--- 4079,4096 ----
|
|
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 to #<procedure vector-sort>".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments to #<procedure vector-sort>".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments to #<procedure vector-sort>".
|
|
! 5_6.mo:Expected error in mat vector-sort: "incorrect number of arguments 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 to #<procedure vector-sort!>".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments to #<procedure vector-sort!>".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments to #<procedure vector-sort!>".
|
|
! 5_6.mo:Expected error in mat vector-sort!: "incorrect number of arguments 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".
|
|
***************
|
|
*** 4101,4109 ****
|
|
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)".
|
|
--- 4101,4109 ----
|
|
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 to #<procedure vector-cas!>".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect number of arguments to #<procedure vector-cas!>".
|
|
! 5_6.mo:Expected error in mat vector-cas!: "incorrect number of arguments 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)".
|
|
***************
|
|
*** 4132,4139 ****
|
|
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".
|
|
--- 4132,4139 ----
|
|
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 to #<procedure box-cas!>".
|
|
! 5_8.mo:Expected error in mat box-cas!: "incorrect number of arguments 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".
|
|
***************
|
|
*** 4171,4192 ****
|
|
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".
|
|
--- 4171,4192 ----
|
|
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 to #<procedure with-input-from-string>".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 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 to #<procedure with-input-from-string>".
|
|
! 6.mo:Expected error in mat port-operations: "incorrect number of arguments 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 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 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 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".
|
|
***************
|
|
*** 4195,4201 ****
|
|
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".
|
|
--- 4195,4201 ----
|
|
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 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".
|
|
***************
|
|
*** 4212,4219 ****
|
|
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".
|
|
--- 4212,4219 ----
|
|
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 to #<procedure pretty-format>".
|
|
! 6.mo:Expected error in mat pretty-print: "incorrect number of arguments 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".
|
|
***************
|
|
*** 6697,6728 ****
|
|
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".
|
|
--- 6697,6728 ----
|
|
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 to #<procedure eof-object>".
|
|
! io.mo:Expected error in mat port-operations1: "incorrect number of arguments 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 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 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 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 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 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".
|
|
***************
|
|
*** 6733,6739 ****
|
|
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".
|
|
--- 6733,6739 ----
|
|
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 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".
|
|
***************
|
|
*** 6916,6928 ****
|
|
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".
|
|
--- 6916,6928 ----
|
|
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 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 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".
|
|
***************
|
|
*** 6948,6963 ****
|
|
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".
|
|
--- 6948,6963 ----
|
|
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 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 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 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".
|
|
***************
|
|
*** 7029,7044 ****
|
|
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>".
|
|
--- 7029,7044 ----
|
|
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 to #<procedure get-datum>".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 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 to #<procedure put-datum>".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments to #<procedure put-datum>".
|
|
! io.mo:Expected error in mat get/put-datum: "incorrect number of arguments 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 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>".
|
|
***************
|
|
*** 7210,7216 ****
|
|
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
|
|
--- 7210,7216 ----
|
|
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 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
|
|
***************
|
|
*** 7276,7302 ****
|
|
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".
|
|
--- 7276,7302 ----
|
|
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 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 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 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 to #<procedure set-top-level-value!>".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 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 to #<procedure define-top-level-value>".
|
|
! 7.mo:Expected error in mat top-level-value-functions: "incorrect number of arguments 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".
|
|
***************
|
|
*** 7701,7811 ****
|
|
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 to #<procedure>".
|
|
hash.mo:Expected error in mat old-hash-table: "incorrect number of arguments 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-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-cells: (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".
|
|
--- 7701,7811 ----
|
|
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 to #<procedure>".
|
|
hash.mo:Expected error in mat old-hash-table: "incorrect number of arguments to #<procedure>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure make-hashtable>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure make-hashtable>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 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 to #<procedure hashtable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-mutable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-mutable?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-size>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-ref>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-ref>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-ref>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-contains?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-contains?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-set!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-set!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-set!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-update!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-update!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-update!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-cell>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-delete!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-delete!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-copy>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-clear!>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-keys>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-keys>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-values>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-entries>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-entries>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-cells>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments to #<procedure hashtable-cells>".
|
|
hash.mo:Expected error in mat hashtable-arguments: "hashtable-cells: (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 to #<procedure hashtable-hash-function>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-equivalence-function>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-weak?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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 to #<procedure hashtable-ephemeron?>".
|
|
! hash.mo:Expected error in mat hashtable-arguments: "incorrect number of arguments 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".
|
|
***************
|
|
*** 7825,7931 ****
|
|
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-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 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".
|
|
--- 7825,7931 ----
|
|
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 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 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 to #<procedure eq-hashtable-ref>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-ref>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-ref>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-set!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-set!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-set!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-update!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-update!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-update!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments to #<procedure eq-hashtable-cell>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-weak?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure eq-hashtable-ephemeron?>".
|
|
! hash.mo:Expected error in mat eq-hashtable-arguments: "incorrect number of arguments 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 to #<procedure symbol-hashtable-ref>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-ref>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-ref>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 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 to #<procedure symbol-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-contains?>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 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 to #<procedure symbol-hashtable-set!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-set!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-set!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 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 to #<procedure symbol-hashtable-update!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-update!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-update!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 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 to #<procedure symbol-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-delete!>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 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 to #<procedure symbol-hashtable-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments to #<procedure symbol-hashtable-cell>".
|
|
! hash.mo:Expected error in mat symbol-hashtable-arguments: "incorrect number of arguments 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 eqv-hashtable-arguments: "incorrect number of arguments 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 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".
|
|
***************
|
|
*** 7933,7948 ****
|
|
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>".
|
|
--- 7933,7948 ----
|
|
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 to #<procedure equal-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments to #<procedure equal-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments to #<procedure symbol-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 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 to #<procedure string-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 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 to #<procedure string-ci-hash>".
|
|
! hash.mo:Expected error in mat hash-functions: "incorrect number of arguments 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>".
|
|
***************
|
|
*** 8058,8065 ****
|
|
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>".
|
|
--- 8058,8065 ----
|
|
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 to #<procedure generate-temporaries>".
|
|
! 8.mo:Expected error in mat generate-temporaries: "incorrect number of arguments 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>".
|
|
***************
|
|
*** 8676,8691 ****
|
|
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*>".
|
|
--- 8676,8691 ----
|
|
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 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 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 to #<procedure define-top-level-syntax>".
|
|
! 8.mo:Expected error in mat top-level-syntax-functions: "incorrect number of arguments 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*>".
|
|
***************
|
|
*** 8784,8806 ****
|
|
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 to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "$fxu<: <-int> is not a fixnum".
|
|
--- 8784,8806 ----
|
|
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 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 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 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 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 to #<procedure fx>=?>".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "incorrect number of arguments to #<procedure $fxu<>".
|
|
fx.mo:Expected error in mat $fxu<: "$fxu<: <-int> is not a fixnum".
|
|
***************
|
|
*** 8832,8844 ****
|
|
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".
|
|
--- 8832,8844 ----
|
|
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".
|
|
***************
|
|
*** 8888,8900 ****
|
|
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".
|
|
--- 8888,8900 ----
|
|
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 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 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".
|
|
***************
|
|
*** 8992,9001 ****
|
|
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".
|
|
--- 8992,9001 ----
|
|
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 to #<procedure fxbit-field>".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments to #<procedure fxbit-field>".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments to #<procedure fxbit-field>".
|
|
! fx.mo:Expected error in mat fxbit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9009,9042 ****
|
|
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".
|
|
--- 9009,9042 ----
|
|
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 to #<procedure fxlength>".
|
|
! fx.mo:Expected error in mat fxlength: "incorrect number of arguments 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 to #<procedure fxbit-count>".
|
|
! fx.mo:Expected error in mat fxbit-count: "incorrect number of arguments 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 to #<procedure fxfirst-bit-set>".
|
|
! fx.mo:Expected error in mat fxfirst-bit-set: "incorrect number of arguments 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 to #<procedure fxlogtest>".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect number of arguments to #<procedure fxlogtest>".
|
|
! fx.mo:Expected error in mat fxlogtest: "incorrect number of arguments 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 to #<procedure fxif>".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments to #<procedure fxif>".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments to #<procedure fxif>".
|
|
! fx.mo:Expected error in mat fxif: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9046,9089 ****
|
|
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".
|
|
--- 9046,9089 ----
|
|
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 to #<procedure fxlogbit?>".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect number of arguments to #<procedure fxlogbit?>".
|
|
! fx.mo:Expected error in mat fxlogbit?: "incorrect number of arguments 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 to #<procedure fxbit-set?>".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect number of arguments to #<procedure fxbit-set?>".
|
|
! fx.mo:Expected error in mat fxbit-set?: "incorrect number of arguments 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 to #<procedure fxlogbit0>".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect number of arguments to #<procedure fxlogbit0>".
|
|
! fx.mo:Expected error in mat fxlogbit0: "incorrect number of arguments 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 to #<procedure fxlogbit1>".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect number of arguments to #<procedure fxlogbit1>".
|
|
! fx.mo:Expected error in mat fxlogbit1: "incorrect number of arguments 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 to #<procedure fxcopy-bit>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments to #<procedure fxcopy-bit>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments to #<procedure fxcopy-bit>".
|
|
! fx.mo:Expected error in mat fxcopy-bit: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9092,9102 ****
|
|
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".
|
|
--- 9092,9102 ----
|
|
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 to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments to #<procedure fxcopy-bit-field>".
|
|
! fx.mo:Expected error in mat fxcopy-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9156,9165 ****
|
|
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".
|
|
--- 9156,9165 ----
|
|
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 to #<procedure fx+/carry>".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments to #<procedure fx+/carry>".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments to #<procedure fx+/carry>".
|
|
! fx.mo:Expected error in mat fx+/carry: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9175,9184 ****
|
|
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".
|
|
--- 9175,9184 ----
|
|
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 to #<procedure fx-/carry>".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments to #<procedure fx-/carry>".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments to #<procedure fx-/carry>".
|
|
! fx.mo:Expected error in mat fx-/carry: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9194,9203 ****
|
|
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".
|
|
--- 9194,9203 ----
|
|
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 to #<procedure fx*/carry>".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments to #<procedure fx*/carry>".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments to #<procedure fx*/carry>".
|
|
! fx.mo:Expected error in mat fx*/carry: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9213,9223 ****
|
|
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".
|
|
--- 9213,9223 ----
|
|
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 to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments to #<procedure fxrotate-bit-field>".
|
|
! fx.mo:Expected error in mat fxrotate-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9240,9249 ****
|
|
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".
|
|
--- 9240,9249 ----
|
|
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 to #<procedure fxreverse-bit-field>".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments to #<procedure fxreverse-bit-field>".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments to #<procedure fxreverse-bit-field>".
|
|
! fx.mo:Expected error in mat fxreverse-bit-field: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9259,9276 ****
|
|
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".
|
|
--- 9259,9276 ----
|
|
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 to #<procedure flonum->fixnum>".
|
|
! fl.mo:Expected error in mat flonum->fixnum: "incorrect number of arguments 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 to #<procedure fixnum->flonum>".
|
|
! fl.mo:Expected error in mat fixnum->flonum: "incorrect number of arguments 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 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".
|
|
***************
|
|
*** 9278,9284 ****
|
|
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".
|
|
--- 9278,9284 ----
|
|
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 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".
|
|
***************
|
|
*** 9286,9292 ****
|
|
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".
|
|
--- 9286,9292 ----
|
|
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 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".
|
|
***************
|
|
*** 9294,9300 ****
|
|
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".
|
|
--- 9294,9300 ----
|
|
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 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".
|
|
***************
|
|
*** 9302,9308 ****
|
|
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".
|
|
--- 9302,9308 ----
|
|
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 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".
|
|
***************
|
|
*** 9310,9349 ****
|
|
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".
|
|
--- 9310,9349 ----
|
|
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 to #<procedure fl=?>".
|
|
! fl.mo:Expected error in mat fl=?: "incorrect number of arguments 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 to #<procedure fl<?>".
|
|
! fl.mo:Expected error in mat fl<?: "incorrect number of arguments 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 to #<procedure fl>?>".
|
|
! fl.mo:Expected error in mat fl>?: "incorrect number of arguments 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 to #<procedure fl<=?>".
|
|
! fl.mo:Expected error in mat fl<=?: "incorrect number of arguments 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 to #<procedure fl>=?>".
|
|
! fl.mo:Expected error in mat fl>=?: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9353,9359 ****
|
|
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".
|
|
--- 9353,9359 ----
|
|
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 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".
|
|
***************
|
|
*** 9363,9445 ****
|
|
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".
|
|
--- 9363,9445 ----
|
|
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 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 to #<procedure flabs>".
|
|
! fl.mo:Expected error in mat flabs: "incorrect number of arguments 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 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 to #<procedure flexp>".
|
|
! fl.mo:Expected error in mat flexp: "incorrect number of arguments 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 to #<procedure flsin>".
|
|
! fl.mo:Expected error in mat flsin: "incorrect number of arguments 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 to #<procedure flcos>".
|
|
! fl.mo:Expected error in mat flcos: "incorrect number of arguments 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 to #<procedure fltan>".
|
|
! fl.mo:Expected error in mat fltan: "incorrect number of arguments 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 to #<procedure flasin>".
|
|
! fl.mo:Expected error in mat flasin: "incorrect number of arguments 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 to #<procedure flacos>".
|
|
! fl.mo:Expected error in mat flacos: "incorrect number of arguments 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 to #<procedure flatan>".
|
|
! fl.mo:Expected error in mat flatan: "incorrect number of arguments 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 to #<procedure flsqrt>".
|
|
! fl.mo:Expected error in mat flsqrt: "incorrect number of arguments 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 to #<procedure flexpt>".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect number of arguments to #<procedure flexpt>".
|
|
! fl.mo:Expected error in mat flexpt: "incorrect number of arguments 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 to #<procedure fltruncate>".
|
|
! fl.mo:Expected error in mat fltruncate: "incorrect number of arguments 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 to #<procedure flfloor>".
|
|
! fl.mo:Expected error in mat flfloor: "incorrect number of arguments 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 to #<procedure flceiling>".
|
|
! fl.mo:Expected error in mat flceiling: "incorrect number of arguments 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 to #<procedure flround>".
|
|
! fl.mo:Expected error in mat flround: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9459,9494 ****
|
|
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".
|
|
--- 9459,9494 ----
|
|
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 to #<procedure flzero?>".
|
|
! fl.mo:Expected error in mat flzero?: "incorrect number of arguments 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 to #<procedure flpositive?>".
|
|
! fl.mo:Expected error in mat flpositive?: "incorrect number of arguments 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 to #<procedure flnegative?>".
|
|
! fl.mo:Expected error in mat flnegative?: "incorrect number of arguments 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 to #<procedure flnonpositive?>".
|
|
! fl.mo:Expected error in mat flnonpositive?: "incorrect number of arguments 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 to #<procedure flnonnegative?>".
|
|
! fl.mo:Expected error in mat flnonnegative?: "incorrect number of arguments 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 to #<procedure fleven?>".
|
|
! fl.mo:Expected error in mat fleven?: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9496,9503 ****
|
|
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".
|
|
--- 9496,9503 ----
|
|
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 to #<procedure flodd?>".
|
|
! fl.mo:Expected error in mat flodd?: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9505,9511 ****
|
|
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".
|
|
--- 9505,9511 ----
|
|
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 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".
|
|
***************
|
|
*** 9513,9519 ****
|
|
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".
|
|
--- 9513,9519 ----
|
|
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 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".
|
|
***************
|
|
*** 9521,9534 ****
|
|
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".
|
|
--- 9521,9534 ----
|
|
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 to #<procedure flnumerator>".
|
|
! fl.mo:Expected error in mat flnumerator: "incorrect number of arguments 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 to #<procedure fldenominator>".
|
|
! fl.mo:Expected error in mat fldenominator: "incorrect number of arguments 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".
|
|
***************
|
|
*** 9574,9580 ****
|
|
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".
|
|
--- 9574,9580 ----
|
|
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 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".
|
|
***************
|
|
*** 9584,9597 ****
|
|
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"".
|
|
--- 9584,9597 ----
|
|
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 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 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"".
|
|
***************
|
|
*** 9626,9633 ****
|
|
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"".
|
|
--- 9626,9633 ----
|
|
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 to #<procedure foreign-sizeof>".
|
|
! foreign.mo:Expected error in mat foreign-sizeof: "incorrect number of arguments 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"".
|
|
***************
|
|
*** 10125,10137 ****
|
|
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".
|
|
--- 10125,10137 ----
|
|
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".
|
|
***************
|
|
*** 10159,10230 ****
|
|
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".
|
|
--- 10159,10230 ----
|
|
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 to #<procedure make-time>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure make-time>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure make-time>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time-type>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time-second>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time-nanosecond>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure set-time-type!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure set-time-type!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure set-time-second!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure set-time-second!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure set-time-nanosecond!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure set-time-nanosecond!>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 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 to #<procedure time=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time<?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time<?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time<=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time<=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time>?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time>?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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 to #<procedure time>=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments to #<procedure time>=?>".
|
|
! date.mo:Expected error in mat time: "incorrect number of arguments 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".
|
|
***************
|
|
*** 10232,10245 ****
|
|
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".
|
|
--- 10232,10245 ----
|
|
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 to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure make-date>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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".
|
|
***************
|
|
*** 10265,10325 ****
|
|
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".
|
|
--- 10265,10325 ----
|
|
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 to #<procedure date?>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure date?>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments to #<procedure date-nanosecond>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-nanosecond>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-second>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-minute>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-hour>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-day>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-month>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-year>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-week-day>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-year-day>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-dst?>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-zone-offset>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 to #<procedure date-zone-name>".
|
|
! date.mo:Expected error in mat date: "incorrect number of arguments 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 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".
|