2010/9/2 Taylor Venable <[email protected]>: > Hi there, Chicken wranglers! Earlier I was writing a program using the fmt > egg and ran into a surprising problem: using it replaces the string-tokenize > function from srfi-13 with an incompatible version, seemingly even if I > didn't ask for it. Here's an example using the REPL:
It looks like we can avoid this by not importing string-tokenize from srfi-13, e.g. (import (except srfi-13 string-tokenize)). I tested it and got the right results now. If someone can confirm this is the right solution, I'll commit the change. _______________________________________________ Chicken-hackers mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-hackers
