Results 167 comments of Alex Shinn

And this actually involved an incomplete utf8 char that incorrectly blocked your program? That should be impossible for the user to input manually.

Sorry, I may have misunderstood the problem. The current limitation is that if `u8-ready?` we assume `char-ready?`. If your bug is not this case, can you elaborate? You just describe...

Good point. As you note, in actuality there is no library cycle, but there may be additional test dependencies. I believe currently the tests just fail and you can install...

I just pushed a workaround for this, similar to what is done for (chibi term ansi), which is to make the test suite conditionally use (srfi 64) if not chibi....

Not really - performance has never been a priority for Chibi. There are two general approaches to profiling: 1) instrumenting and timing all (or some subset of) procedure applications, or...

The `(chibi optimize profile)` module gives counts (not times) for called procedures. If you have a script you run as: ```chibi-scheme foo.scm``` you can print the profile with ```chibi-scheme -mchibi.optimize.profile...

1. It sounds like an extension to unquote-splicing. We could special case: `,@(or a b)` for splice either a or b, but I'm not sure this is a good idea....

You probably want the function to allocate and return an array, which Chibi will convert to a list automatically. If you're having trouble convincing the FFI to do what you...

What specifically do you want to wrap?

That's not specific, that's just restating the request. Do you want to be able to wrap existing variadic C functions like printf, and if so which one? Or do you...