
and functionality improvements (including support for measuring coverage), primitive argument-checking fixes, and object-file changes resulting in reduced load times (and some backward incompatibility): - annotations are now preserved in object files for debug only, for profiling only, for both, or not at all, depending on the settings of generate-inspector-information and compile-profile. in particular, when inspector information is not enabled but profiling is, source information does not leak into error messages and inspector output, though it is still available via the profile tools. The mechanics of this involved repurposing the fasl a? parameter to hold an annotation flags value when it is not #f and remaking annotations with new flags if necessary before emitting them. compile.ss, fasl.ss, misc.ms - altered a number of mats to produce correct results even when the 's' directory is profiled. misc.ms, cp0.ms, record.ms - profile-release-counters is now generation-friendly; that is, it doesn't look for dropped code objects in generations that have not been collected since the last call to profile-release-counters. also, it no longer allocates memory when it releases counters. pdhtml.ss, gc.c, gcwrapper.c, globals.h, prim5.c - removed unused entry points S_ifile, S_ofile, and S_iofile alloc.c, externs.h - mats that test loading profile info into the compiler's database to guide optimization now weed out preexisting entries, in case the 's' directory is profiled. 4.ms, mat.ss, misc.ms, primvars.ms - counters for dropped code objects are now released at the start of each mat group. mat.ss - replaced ehc (enable-heap-check) option with hci (heap-check-interval) option that allows heap checks to be performed periodically rather than on each collection. hci=0 is equivalent to ehc=f (disabling heap checks) and hci=1 is equivalent to ehc=t (enabling heap checks every collection), while hci=100 enables heap checks only every 100th collection. allx and bullyx mats use this feature to reduce heap-checking overhead to a more reasonable level. this is particularly important when the 's' directory is profiled, since the amount of static memory to be checked is greatly increased due to the counters. mats/Mf-base, mat.ss, primvars.ms - added a mat that calls #%show-allocation, which was otherwise not being tested. misc.ms - removed a broken primvars mat and updated two others. in each case, the mat was looking for information about primitives in the wrong (i.e., old) place and silently succeeding when it didn't find any primitives to tests. the revised mats (along with a few others) now check to make sure at least one identifier has the information they look for. the removed mat was checking for library information that is now compiled in, so the mat is now unnecessary. the others were (not) doing argument-error checks. fixing these turned up a handful of problems that have also been fixed: a couple of unbound variables in the mat driver, two broken primdata declarations, a tardy argument check by profile-load-data, and a bug in char-ready?, which was requiring an argument rather than defaulting it to the current input port. primdata.ss, pdhtml.ss, io.ms, primdvars.ms, 4.ms, 6.ms, misc.ms, patch* - added initial support for recording coverage information. when the new parameter generate-covin-files is set, the compiler generates .covin files containing the universe of all source objects for which profile forms are present in the expander output. when profiling and generation of covin files are enabled in the 's' directory, the mats optionally generate .covout files for each mat file giving the subset of the universe covered by the mat file, along with an all.covout in each mat output directory aggregating the coverage for the directory and another all.covout in the top-level mat directory aggregating the coverage for all directories. back.ss, compile.ss, cprep.ss, primdata.ss, s/Mf-base, mat.ss, mats/Mf-base, mats/primvars.ms - support for generating covout files is now built in. with-coverage-output gathers and dumps coverage information, and aggregate-coverage-output combines (aggregates) covout files. pdhtml.ss, primdata.ss, compile.ss, mat.ss, mats/Mf-base, primvars.ms - profile-clear now adjusts active coverage trackers to avoid losing coverage information. pdhtml.ss, prim5.c - nested with-coverage calls are now supported. pdhtml.ss - switched to a more compact representation for covin and covout files; reduces disk space (compressed or not) by about a factor of four and read time by about a factor of two with no increase in write time. primdata.ss, pdhtml.ss, cprep.ss, compile.ss, mat.ss, mats/Mf-base - added support for determining coverage for an entire run, including coverage for expressions hit during boot time. 'all' mats now produce run.covout files in each output directory, and 'allx' mats produce an aggregate run.covout file in the mat directory. pdhtml.ss, mat.ss, mats/Mf-base - profile-release-counters now adjusts active coverage trackers to account for the counters that have been released. pdhtml.ss, prim5.c - replaced the artificial "examples" target with a real "build-examples" target so make won't think it always has to mats that depend upon the examples directory having been compiled. mats make clean now runs make clean in the examples directory. mats/Mf-base importing a library from an object file now just visits the object file rather than doing a full load so that the run-time code for the library is not retained. The run-time code is still read because the current fasl format forces the entire file to be read, but not retaining the code can lower heap size and garbage-collection cost, particularly when many object-code libraries are imported. The downside is that the file must be revisited if the run-time code turns out to be required. This change exposed several places where the code was failing to check if a revisit is needed. syntax.ss, 7.ms, 8.ms, misc.ms, root-experr* - fixed typos: was passing unquoted load rather than quoted load to $load-library along one path (where it is loading source code and therefore irrelevant), and was reporting src-path rather than obj-path in a message about failing to define a library. syntax.ss - compile-file and friends now put all recompile information in the first fasl object after the header so the library manager can find it without loading the entire fasl file. The library manager now does so. It also now checks to see if library object files need to be recreated before loading them rather than loading them and possibly recompiling them after discovering they are out of date, since the latter requires loading the full object file even if it's out of date, while the former takes advantage of the ability to extract just recompile information. as well as reducing overhead, this eliminates possibly undesirable side effects, such as creation and registration of out-of-date nongenerative record-type descriptors. because the library manager expects to find recompile information at the front of an object file, it will not find all recompile information if object files are "catted" together. also, compile-file has to hold in memory the object code for all expressions in the file so that it can emit the unified recompile information, rather than writing to the object file incrementally, which can significantly increase the memory required to compile a large file full of individual top-level forms. This does not affect top-level programs, which were already handled as a whole, or a typical library file that contains just a single library form. compile.ss, syntax.ss - the library manager now checks include files before library dependencies when compile-imported-libraries is false (as it already did when compile-imported-libraries is true) in case a source change affects the set of imported libraries. (A library change can affect the set of include files as well, but checking dependencies before include files can cause unneeded libraries to be loaded.) The include-file check is based on recompile-info rather than dependencies, but the library checks are still based on dependencies. syntax.ss - fixed check for binding of scheme-version. (the check prevents premature treatment of recompile-info records as Lexpand forms to be passed to $interpret-backend.) scheme.c - strip-fasl-file now preserves recompile-info when compile-time info is stripped. strip.ss - removed include-req* from library/ct-info and ctdesc records; it is no longer needed now that all recompile information is maintained separately. expand-lang.ss, syntax.ss, compile.ss, cprep.ss, syntax.ss - changed the fasl format and reworked a lot of code in the expander, compiler, fasl writer, and fasl reader to allow the fasl reader to skip past run-time information when it isn't needed and compile-time information when it isn't needed. Skipping past still involves reading and decoding when encrypted, but the fasl reader no longer parses or allocates code and data in the portions to be skipped. Side effects of associating record uids with rtds are also avoided, as are the side effects of interning symbols present only in the skipped data. Skipping past code objects also reduces or eliminates the need to synchronize data and instruction caches. Since the fasl reader no longer returns compile-time (visit) or run-time (revisit) code and data when not needed, the fasl reader no longer wraps these objects in a pair with a 0 or 1 visit or revisit marker. To support this change, the fasl writer generates separate top-level fasl entries (and graphs) for separate forms in the same top-level source form (e.g., begin or library). This reliably breaks eq-ness of shared structure across these forms, which was previously broken only when visit or revisit code was loaded at different times (this is an incompatible change). Because of the change, fasl "groups" are no longer needed, so they are no longer handled. 7.ss, cmacros.ss, compile.ss, expand-lang.ss, strip.ss, externs.h, fasl.c, scheme.c, hash.ms - the change above is surfaced in an optional fasl-read "situation" argument (visit, revisit, or load). The default is load. visit causes it to skip past revisit code and data; revisit causes it to skip past visit code and data; and load causes it not to skip past either. visit-revisit data produced by (eval-when (visit revisit) ---) is never skipped. 7.ss, primdata.ss, io.stex - to improve compile-time and run-time error checking, the Lexpand recompile-info, library/rt-info, library-ct-info, and program-info forms have been replaced with list-structured forms, e.g., (recompile-info ,rcinfo). expand-lang.ss, compile.ss, cprep.ss, interpret.ss, syntax.ss - added visit-compiled-from-port and revisit-compiled-from-port to complement the existing load-compiled-from-port. 7.ss, primdata.ss, 7.ms, system.stex - increased amount read when seeking an lz4-encrypted input file from 32 to 1024 bytes at a time compress-io.c - replaced the fasl a? parameter value #t with an "all" flag value so it's value is consistently a mask. cmacros.ss, fasl.ss, compile.ss - split off profile mats into a separate file misc.ms, profile.ms (new), root-experr*, mats/Mf-base - added coverage percent computations to mat allx/bullyx output mat.ss, mats/Mf-base, primvars.ms - replaced coverage tables with more generic and generally useful source tables, which map source objects to arbitrary values. pdhtml.ss, compile.ss, cprep.ss, primdata.ss, mat.ss, mats/Mf-base, primvars.ms, profile.ms, syntax.stex - reduced profile counting overhead by using calls to fold-left instead of calls to apply and map and by using fixnum operations for profile counts on 64-bit machines. pdhtml.ss - used a critical section to fix a race condition in the calculations of profile counts that sometimes resulted in bogus (including negative) counts, especially when the 's' directory is profiled. pdhtml.ss - added discard flag to declaration for hashtable-size primdata.ss - redesigned the printed representation of source tables and rewrote get-source-table! to read and store incrementally to reduce memory overhead. compile.ss - added generate-covin-files to the set of parameters preserved by compile-file, etc. compile.ss, system.stex - moved covop argument before the undocumented machine and hostop arguments to compile-port and compile-to-port. removed the undocumented ofn argument from compile-to-port; using (port-name ip) instead. compile.ss, primdata.ss, 7.ms, system.stex - compile-port now tries to come up with a file position to supply to make-read, which it can do if the port's positions are character positions (presently string ports) or if the port is positioned at zero. compile.ss - audited the argument-type-error fuzz mat exceptions and fixed a host of problems this turned up (entries follow). added #f as an invalid argument for every type for which #f is indeed invalid to catch places where the maybe- prefix was missing on the argument type. the mat tries hard to determine if the condition raised (if any) as the result of an invalid argument is appropriate and redirects the remainder to the mat-output (.mo) file prefixed with 'Expected error', causing them to show up in the expected error output so developers will be encouraged to audit them in the future. primvars.ms, mat.ss - added an initial symbol? test on machine type names so we produce an invalid machine type error message rather than something confusing like "machine type #f is not supported". compile.ss - fixed declarations for many primitives that were specified as accepting arguments of more general types than they actually accept, such as number -> real for various numeric operations, symbol -> endianness for various bytevector operations, time -> time-utc for time-utc->date, and list -> list-of-string-pairs for default-library-search-handler. also replaced some of the sub-xxxx types with specific types such as sub-symbol -> endianness in utf16->string, but only where they were causing issues with the primvars argument-type-error fuzz mat. (this should be done more generally.) primdata.ss - fixed incorrect who arguments (was map instead of fold-right, current-date instead of time-utc->date); switched to using define-who/set-who! generally. 4.ss, date.ss - append! now checks all arguments before any mutation 5_2.ss - with-source-path now properly supplies itself as who for the string? argument check; callers like load now do their own checks. 7.ss - added missing integer? check to $fold-bytevector-native-ref whose lack could have resulted in a compile-time error. cp0.ss - fixed typo in output-port-buffer-mode error message io.ss - fixed who argument (was fx< rather than fx<?) library.ss - fixed declaration of first source-file-descriptor argument (was sfd, now string) primdata.ss - added missing article 'a' in a few error messages prims.ss - fixed the copy-environment argument-type error message for the list of symbols argument. syntax.ss - the environment procedure now catches exceptions that occur and reraises the exception with itself as who if the condition isn't already a who condition. syntax.ss - updated experr and allx patch files for changes to argument-count fuzz mat and fixes for problems turned up by them. root-experr*, patch* - fixed a couple of issues setting port sizes: string and bytevector output port put handlers don't need room to store the character or byte, so they now set the size to the buffer length rather than one less. binary-file-port-clear-output now sets the index rather than size to zero; setting the size to zero is inappropriate for some types of ports and could result in loss of buffering and even suppression of future output. removed a couple of redundant sets of the size that occur immediately after setting the buffer. io.ss - it is now possible to return from a call to with-profile-tracker multiple times and not double-count (or worse) any counts. pdhtml.ss, profile.ms - read-token now requires a file position when it is handed a source-file descriptor (since the source-file descriptor isn't otherwise useful), and the source-file descriptor argument can no longer be #f. the input file position plays the same role as the input file position in get-datum/annotations. these extra read-token arguments are now documented. read.ss, 6.ms, io.stex - the source-file descriptor argument to get-datum/annotations can no longer be #f. it was already documented that way. read.ss - read-token and do-read now look for the character-positions port flag before asking if the port has port-position, since the latter is slightly more expensive. read.ss - rd-error now reports the current port position if it can be determined when fp isn't already set, i.e., when reading from a port without character positions (presently any non string port) and fp has not been passed in explicitly (to read-token or get-datum/annotations). the port position might not be a character position, but it should be better than nothing. read.ss - added comment noting an invariant for s_profile_release_counters. prim5.c - restored accidentally dropped fasl-write formdef and dropped duplicate fasl-read formdef io.stex - added a 'coverage' target that tests the coverage of the Scheme-code portions of Chez Scheme by the mats. Makefile.in, Makefile-workarea.in - added .PHONY declarations for all of the targets in the top-level and workarea make files, and renamed the create-bintar, create-rpm, and create-pkg targets bintar, rpm, and pkg. Makefile.in, Makefile-workarea.in - added missing --retain-static-relocation command-line argument and updated the date scheme.1.in - removed a few redundant conditional variable settings configure - fixed declaration of condition wait (timeout -> maybe-timeout) primdata.ss original commit: 88501743001393fa82e89c90da9185fc0086fbcb
6210 lines
578 KiB
Plaintext
6210 lines
578 KiB
Plaintext
*** errors-compile-0-f-f-f 2019-09-03 15:44:15.000000000 -0700
|
|
--- errors-compile-0-t-f-f 2019-09-03 15:21:17.000000000 -0700
|
|
***************
|
|
*** 144,150 ****
|
|
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".
|
|
--- 144,150 ----
|
|
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".
|
|
***************
|
|
*** 242,253 ****
|
|
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".
|
|
--- 242,253 ----
|
|
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".
|
|
***************
|
|
*** 284,291 ****
|
|
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".
|
|
--- 284,291 ----
|
|
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".
|
|
***************
|
|
*** 587,594 ****
|
|
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".
|
|
--- 587,594 ----
|
|
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".
|
|
***************
|
|
*** 598,605 ****
|
|
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".
|
|
--- 598,605 ----
|
|
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".
|
|
***************
|
|
*** 641,648 ****
|
|
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)".
|
|
--- 641,648 ----
|
|
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)".
|
|
***************
|
|
*** 729,741 ****
|
|
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".
|
|
--- 729,741 ----
|
|
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".
|
|
***************
|
|
*** 748,765 ****
|
|
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)".
|
|
--- 748,765 ----
|
|
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)".
|
|
***************
|
|
*** 802,811 ****
|
|
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".
|
|
--- 802,811 ----
|
|
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".
|
|
***************
|
|
*** 814,823 ****
|
|
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".
|
|
--- 814,823 ----
|
|
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".
|
|
***************
|
|
*** 826,835 ****
|
|
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".
|
|
--- 826,835 ----
|
|
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".
|
|
***************
|
|
*** 858,875 ****
|
|
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".
|
|
--- 858,875 ----
|
|
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".
|
|
***************
|
|
*** 880,886 ****
|
|
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".
|
|
--- 880,886 ----
|
|
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".
|
|
***************
|
|
*** 916,922 ****
|
|
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".
|
|
--- 916,922 ----
|
|
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".
|
|
***************
|
|
*** 925,931 ****
|
|
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".
|
|
--- 925,931 ----
|
|
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".
|
|
***************
|
|
*** 945,951 ****
|
|
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".
|
|
--- 945,951 ----
|
|
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".
|
|
***************
|
|
*** 965,971 ****
|
|
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".
|
|
--- 965,971 ----
|
|
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".
|
|
***************
|
|
*** 985,991 ****
|
|
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".
|
|
--- 985,991 ----
|
|
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".
|
|
***************
|
|
*** 1005,1012 ****
|
|
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".
|
|
--- 1005,1012 ----
|
|
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".
|
|
***************
|
|
*** 1014,1021 ****
|
|
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".
|
|
--- 1014,1021 ----
|
|
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".
|
|
***************
|
|
*** 1026,1033 ****
|
|
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".
|
|
--- 1026,1033 ----
|
|
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".
|
|
***************
|
|
*** 1038,1045 ****
|
|
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".
|
|
--- 1038,1045 ----
|
|
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".
|
|
***************
|
|
*** 1050,1057 ****
|
|
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".
|
|
--- 1050,1057 ----
|
|
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".
|
|
***************
|
|
*** 1071,1077 ****
|
|
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".
|
|
--- 1071,1077 ----
|
|
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".
|
|
***************
|
|
*** 1084,1090 ****
|
|
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".
|
|
--- 1084,1090 ----
|
|
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".
|
|
***************
|
|
*** 1098,1165 ****
|
|
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".
|
|
--- 1098,1165 ----
|
|
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".
|
|
***************
|
|
*** 1172,1181 ****
|
|
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".
|
|
--- 1172,1181 ----
|
|
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".
|
|
***************
|
|
*** 1186,1194 ****
|
|
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".
|
|
--- 1186,1194 ----
|
|
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".
|
|
***************
|
|
*** 1198,1243 ****
|
|
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".
|
|
--- 1198,1243 ----
|
|
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".
|
|
***************
|
|
*** 1296,1318 ****
|
|
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".
|
|
--- 1296,1318 ----
|
|
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".
|
|
***************
|
|
*** 1325,1363 ****
|
|
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".
|
|
--- 1325,1363 ----
|
|
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".
|
|
***************
|
|
*** 1367,1443 ****
|
|
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".
|
|
--- 1367,1443 ----
|
|
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".
|
|
***************
|
|
*** 1448,1458 ****
|
|
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".
|
|
--- 1448,1458 ----
|
|
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".
|
|
***************
|
|
*** 1465,1475 ****
|
|
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".
|
|
--- 1465,1475 ----
|
|
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".
|
|
***************
|
|
*** 1483,1492 ****
|
|
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".
|
|
--- 1483,1492 ----
|
|
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".
|
|
***************
|
|
*** 1497,1520 ****
|
|
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>".
|
|
--- 1497,1520 ----
|
|
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>".
|
|
***************
|
|
*** 1640,1695 ****
|
|
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".
|
|
--- 1640,1695 ----
|
|
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".
|
|
***************
|
|
*** 1722,1882 ****
|
|
5_3.mo:Expected error in mat div0-and-mod0: "mod0: undefined for 0".
|
|
5_3.mo:Expected error in mat div0-and-mod0: "mod0: undefined for a".
|
|
5_3.mo:Expected error in mat div0-and-mod0: "mod0: undefined for (a)".
|
|
! 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".
|
|
--- 1722,1882 ----
|
|
5_3.mo:Expected error in mat div0-and-mod0: "mod0: undefined for 0".
|
|
5_3.mo:Expected error in mat div0-and-mod0: "mod0: undefined for a".
|
|
5_3.mo:Expected error in mat div0-and-mod0: "mod0: undefined for (a)".
|
|
! 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".
|
|
***************
|
|
*** 1895,1907 ****
|
|
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".
|
|
--- 1895,1907 ----
|
|
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".
|
|
***************
|
|
*** 1916,2061 ****
|
|
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".
|
|
--- 1916,2061 ----
|
|
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".
|
|
***************
|
|
*** 2063,2101 ****
|
|
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".
|
|
--- 2063,2101 ----
|
|
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".
|
|
***************
|
|
*** 2119,2127 ****
|
|
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"".
|
|
--- 2119,2127 ----
|
|
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"".
|
|
***************
|
|
*** 2133,2185 ****
|
|
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".
|
|
--- 2133,2185 ----
|
|
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".
|
|
***************
|
|
*** 2196,2225 ****
|
|
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)".
|
|
--- 2196,2225 ----
|
|
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)".
|
|
***************
|
|
*** 2228,2237 ****
|
|
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)".
|
|
--- 2228,2237 ----
|
|
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)".
|
|
***************
|
|
*** 2240,2248 ****
|
|
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)".
|
|
--- 2240,2248 ----
|
|
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)".
|
|
***************
|
|
*** 2250,2258 ****
|
|
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)".
|
|
--- 2250,2258 ----
|
|
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)".
|
|
***************
|
|
*** 2260,2269 ****
|
|
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 ...)".
|
|
--- 2260,2269 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2277,2286 ****
|
|
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 ...)".
|
|
--- 2277,2286 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2294,2302 ****
|
|
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)".
|
|
--- 2294,2302 ----
|
|
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)".
|
|
***************
|
|
*** 2306,2314 ****
|
|
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)".
|
|
--- 2306,2314 ----
|
|
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)".
|
|
***************
|
|
*** 2318,2327 ****
|
|
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 ...)".
|
|
--- 2318,2327 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2337,2346 ****
|
|
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 ...)".
|
|
--- 2337,2346 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2356,2365 ****
|
|
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 ...)".
|
|
--- 2356,2365 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2369,2378 ****
|
|
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 ...)".
|
|
--- 2369,2378 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2382,2392 ****
|
|
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 ...)".
|
|
--- 2382,2392 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2400,2410 ****
|
|
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 ...)".
|
|
--- 2400,2410 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2418,2426 ****
|
|
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 ...)".
|
|
--- 2418,2426 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2432,2440 ****
|
|
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 ...)".
|
|
--- 2432,2440 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2446,2455 ****
|
|
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 ...)".
|
|
--- 2446,2455 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2476,2485 ****
|
|
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 ...)".
|
|
--- 2476,2485 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2506,2515 ****
|
|
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 ...)".
|
|
--- 2506,2515 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2519,2528 ****
|
|
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 ...)".
|
|
--- 2519,2528 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2532,2542 ****
|
|
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 ...)".
|
|
--- 2532,2542 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2551,2561 ****
|
|
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 ...)".
|
|
--- 2551,2561 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2570,2579 ****
|
|
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 ...)".
|
|
--- 2570,2579 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2583,2592 ****
|
|
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 ...)".
|
|
--- 2583,2592 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2596,2606 ****
|
|
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 ...)".
|
|
--- 2596,2606 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2614,2624 ****
|
|
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 ...)".
|
|
--- 2614,2624 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2632,2641 ****
|
|
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 ...)".
|
|
--- 2632,2641 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2645,2654 ****
|
|
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 ...)".
|
|
--- 2645,2654 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2658,2668 ****
|
|
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 ...)".
|
|
--- 2658,2668 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2676,2686 ****
|
|
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 ...)".
|
|
--- 2676,2686 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2694,2703 ****
|
|
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 ...)".
|
|
--- 2694,2703 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2707,2716 ****
|
|
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 ...)".
|
|
--- 2707,2716 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2720,2730 ****
|
|
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 ...)".
|
|
--- 2720,2730 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2738,2748 ****
|
|
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 ...)".
|
|
--- 2738,2748 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2756,2764 ****
|
|
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 ...)".
|
|
--- 2756,2764 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2788,2796 ****
|
|
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 ...)".
|
|
--- 2788,2796 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2820,2829 ****
|
|
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 ...)".
|
|
--- 2820,2829 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2857,2866 ****
|
|
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 ...)".
|
|
--- 2857,2866 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2894,2903 ****
|
|
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 ...)".
|
|
--- 2894,2903 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2913,2922 ****
|
|
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 ...)".
|
|
--- 2913,2922 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2932,2942 ****
|
|
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 ...)".
|
|
--- 2932,2942 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2955,2965 ****
|
|
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 ...)".
|
|
--- 2955,2965 ----
|
|
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 ...)".
|
|
***************
|
|
*** 2978,2986 ****
|
|
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 ...)".
|
|
--- 2978,2986 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3016,3024 ****
|
|
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 ...)".
|
|
--- 3016,3024 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3058,3067 ****
|
|
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 ...)".
|
|
--- 3058,3067 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3095,3104 ****
|
|
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 ...)".
|
|
--- 3095,3104 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3144,3153 ****
|
|
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 ...)".
|
|
--- 3144,3153 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3159,3168 ****
|
|
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 ...)".
|
|
--- 3159,3168 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3178,3188 ****
|
|
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 ...)".
|
|
--- 3178,3188 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3199,3209 ****
|
|
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 ...)".
|
|
--- 3199,3209 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3224,3234 ****
|
|
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 ...)".
|
|
--- 3224,3234 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3263,3273 ****
|
|
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 ...)".
|
|
--- 3263,3273 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3305,3316 ****
|
|
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 ...)".
|
|
--- 3305,3316 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3369,3380 ****
|
|
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 ...)".
|
|
--- 3369,3380 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3433,3448 ****
|
|
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".
|
|
--- 3433,3448 ----
|
|
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".
|
|
***************
|
|
*** 3466,3474 ****
|
|
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 ...)".
|
|
--- 3466,3474 ----
|
|
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 ...)".
|
|
***************
|
|
*** 3476,3516 ****
|
|
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".
|
|
--- 3476,3516 ----
|
|
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".
|
|
***************
|
|
*** 3549,3557 ****
|
|
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".
|
|
--- 3549,3557 ----
|
|
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".
|
|
***************
|
|
*** 3590,3598 ****
|
|
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".
|
|
--- 3590,3598 ----
|
|
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".
|
|
***************
|
|
*** 3612,3620 ****
|
|
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".
|
|
--- 3612,3620 ----
|
|
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".
|
|
***************
|
|
*** 3634,3642 ****
|
|
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"".
|
|
--- 3634,3642 ----
|
|
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"".
|
|
***************
|
|
*** 3686,3706 ****
|
|
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)".
|
|
--- 3686,3706 ----
|
|
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)".
|
|
***************
|
|
*** 3722,3733 ****
|
|
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".
|
|
--- 3722,3733 ----
|
|
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".
|
|
***************
|
|
*** 3811,3817 ****
|
|
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 3".
|
|
! 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".
|
|
--- 3811,3817 ----
|
|
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 3".
|
|
! 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".
|
|
***************
|
|
*** 3865,3872 ****
|
|
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".
|
|
--- 3865,3872 ----
|
|
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".
|
|
***************
|
|
*** 3894,3902 ****
|
|
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".
|
|
--- 3894,3902 ----
|
|
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".
|
|
***************
|
|
*** 3960,3968 ****
|
|
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".
|
|
--- 3960,3968 ----
|
|
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".
|
|
***************
|
|
*** 3977,3985 ****
|
|
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".
|
|
--- 3977,3985 ----
|
|
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".
|
|
***************
|
|
*** 3994,4011 ****
|
|
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".
|
|
--- 3994,4011 ----
|
|
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".
|
|
***************
|
|
*** 4016,4024 ****
|
|
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)".
|
|
--- 4016,4024 ----
|
|
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)".
|
|
***************
|
|
*** 4047,4054 ****
|
|
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".
|
|
--- 4047,4054 ----
|
|
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".
|
|
***************
|
|
*** 4086,4107 ****
|
|
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".
|
|
--- 4086,4107 ----
|
|
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".
|
|
***************
|
|
*** 4110,4116 ****
|
|
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".
|
|
--- 4110,4116 ----
|
|
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".
|
|
***************
|
|
*** 4127,4134 ****
|
|
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".
|
|
--- 4127,4134 ----
|
|
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".
|
|
***************
|
|
*** 6612,6643 ****
|
|
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".
|
|
--- 6612,6643 ----
|
|
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".
|
|
***************
|
|
*** 6648,6654 ****
|
|
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".
|
|
--- 6648,6654 ----
|
|
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".
|
|
***************
|
|
*** 6831,6843 ****
|
|
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".
|
|
--- 6831,6843 ----
|
|
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".
|
|
***************
|
|
*** 6863,6878 ****
|
|
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".
|
|
--- 6863,6878 ----
|
|
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".
|
|
***************
|
|
*** 6944,6959 ****
|
|
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>".
|
|
--- 6944,6959 ----
|
|
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>".
|
|
***************
|
|
*** 7125,7131 ****
|
|
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 visit: library (testfile-wpo-lib) is not visible
|
|
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
|
|
--- 7125,7131 ----
|
|
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 visit: library (testfile-wpo-lib) is not visible
|
|
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
|
|
***************
|
|
*** 7141,7167 ****
|
|
7.mo:Expected error in mat compile-whole-library: "separate-compile: Exception in compile-whole-library: encountered visit-only run-time library (testfile-cwl-a9) while processing file "testfile-cwl-a9.wpo"
|
|
7.mo:Expected error in mat compile-whole-library: "separate-eval: Exception in compile-whole-program: encountered library (testfile-deja-vu-one) in testfile-deja-vu-dup.wpo, but had already encountered it in testfile-deja-vu-two.wpo
|
|
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".
|
|
--- 7141,7167 ----
|
|
7.mo:Expected error in mat compile-whole-library: "separate-compile: Exception in compile-whole-library: encountered visit-only run-time library (testfile-cwl-a9) while processing file "testfile-cwl-a9.wpo"
|
|
7.mo:Expected error in mat compile-whole-library: "separate-eval: Exception in compile-whole-program: encountered library (testfile-deja-vu-one) in testfile-deja-vu-dup.wpo, but had already encountered it in testfile-deja-vu-two.wpo
|
|
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".
|
|
***************
|
|
*** 7566,7676 ****
|
|
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".
|
|
--- 7566,7676 ----
|
|
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".
|
|
***************
|
|
*** 7690,7796 ****
|
|
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".
|
|
--- 7690,7796 ----
|
|
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".
|
|
***************
|
|
*** 7798,7813 ****
|
|
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>".
|
|
--- 7798,7813 ----
|
|
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>".
|
|
***************
|
|
*** 7923,7930 ****
|
|
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>".
|
|
--- 7923,7930 ----
|
|
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>".
|
|
***************
|
|
*** 8520,8535 ****
|
|
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*>".
|
|
--- 8520,8535 ----
|
|
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*>".
|
|
***************
|
|
*** 8628,8650 ****
|
|
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".
|
|
--- 8628,8650 ----
|
|
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".
|
|
***************
|
|
*** 8676,8688 ****
|
|
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".
|
|
--- 8676,8688 ----
|
|
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".
|
|
***************
|
|
*** 8732,8744 ****
|
|
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".
|
|
--- 8732,8744 ----
|
|
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".
|
|
***************
|
|
*** 8836,8845 ****
|
|
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".
|
|
--- 8836,8845 ----
|
|
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".
|
|
***************
|
|
*** 8853,8886 ****
|
|
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".
|
|
--- 8853,8886 ----
|
|
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".
|
|
***************
|
|
*** 8890,8933 ****
|
|
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".
|
|
--- 8890,8933 ----
|
|
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".
|
|
***************
|
|
*** 8936,8946 ****
|
|
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".
|
|
--- 8936,8946 ----
|
|
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".
|
|
***************
|
|
*** 9000,9009 ****
|
|
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".
|
|
--- 9000,9009 ----
|
|
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".
|
|
***************
|
|
*** 9019,9028 ****
|
|
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".
|
|
--- 9019,9028 ----
|
|
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".
|
|
***************
|
|
*** 9038,9047 ****
|
|
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".
|
|
--- 9038,9047 ----
|
|
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".
|
|
***************
|
|
*** 9057,9067 ****
|
|
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".
|
|
--- 9057,9067 ----
|
|
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".
|
|
***************
|
|
*** 9084,9093 ****
|
|
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".
|
|
--- 9084,9093 ----
|
|
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".
|
|
***************
|
|
*** 9103,9120 ****
|
|
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".
|
|
--- 9103,9120 ----
|
|
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".
|
|
***************
|
|
*** 9122,9128 ****
|
|
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".
|
|
--- 9122,9128 ----
|
|
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".
|
|
***************
|
|
*** 9130,9136 ****
|
|
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".
|
|
--- 9130,9136 ----
|
|
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".
|
|
***************
|
|
*** 9138,9144 ****
|
|
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".
|
|
--- 9138,9144 ----
|
|
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".
|
|
***************
|
|
*** 9146,9152 ****
|
|
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".
|
|
--- 9146,9152 ----
|
|
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".
|
|
***************
|
|
*** 9154,9193 ****
|
|
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".
|
|
--- 9154,9193 ----
|
|
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".
|
|
***************
|
|
*** 9197,9203 ****
|
|
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".
|
|
--- 9197,9203 ----
|
|
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".
|
|
***************
|
|
*** 9207,9289 ****
|
|
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".
|
|
--- 9207,9289 ----
|
|
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".
|
|
***************
|
|
*** 9303,9338 ****
|
|
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".
|
|
--- 9303,9338 ----
|
|
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".
|
|
***************
|
|
*** 9340,9347 ****
|
|
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".
|
|
--- 9340,9347 ----
|
|
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".
|
|
***************
|
|
*** 9349,9355 ****
|
|
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".
|
|
--- 9349,9355 ----
|
|
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".
|
|
***************
|
|
*** 9357,9363 ****
|
|
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".
|
|
--- 9357,9363 ----
|
|
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".
|
|
***************
|
|
*** 9365,9378 ****
|
|
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".
|
|
--- 9365,9378 ----
|
|
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".
|
|
***************
|
|
*** 9418,9424 ****
|
|
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".
|
|
--- 9418,9424 ----
|
|
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".
|
|
***************
|
|
*** 9428,9441 ****
|
|
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"".
|
|
--- 9428,9441 ----
|
|
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"".
|
|
***************
|
|
*** 9470,9477 ****
|
|
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"".
|
|
--- 9470,9477 ----
|
|
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"".
|
|
***************
|
|
*** 9969,9981 ****
|
|
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".
|
|
--- 9969,9981 ----
|
|
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".
|
|
***************
|
|
*** 10003,10074 ****
|
|
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".
|
|
--- 10003,10074 ----
|
|
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".
|
|
***************
|
|
*** 10076,10089 ****
|
|
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".
|
|
--- 10076,10089 ----
|
|
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".
|
|
***************
|
|
*** 10109,10169 ****
|
|
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".
|
|
--- 10109,10169 ----
|
|
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".
|