Results 168 comments of Alex Shinn

I cloned your repo and was able to reproduce the failed test. For simplicity I commented out all the other tests and changed to use `(chibi test)`: ``` $ chibi...

Note in general if you reload a shared library while it's in active use (either via another thread or continuation) your application is likely to crash. That said, it can...

Not just arrays, various tests are failing with errors like "substring not defined", looks like the build is corrupt. This only happens for cmake which I'm not too familiar with....

Thanks for the report! I'll add some definitions for those for the `#ifdef PLAN9` case.

Currently we don't have any way to indicate an expected failure unconditionally, only a way to skip tests, so we'd need to add that first, and update all the reporting....

Thanks! I have to think about this though. R7RS leaves this unspecified, so there's no requirement to signal an error, and there may be many existing programs relying on the...

Yes, let me prepare a new release when I find some time.

IrRegex should be fast if it can compile the pattern to a DFA, and slow otherwise. In the DFA case the inner loops are dfa-match/{shortest,longest}, and these don't use bitwise...