Gorden, Not really sure what you mean by "That was CMD, the next is CYGWIN bash". However I don't see the problem you are having at all with the 20070410...
Hi Guys, I think I fixed this bug (and a few other problems with the CLI) in commit 4ddf892fbf62cdc43d210a5b21a807a324d05231 Author: Jonathan Wright...
Hi everybody, I've got a proposal for API cleanup for common function prefixes: I propose to move all "as*" and "is*" functions to a seperate slot. In short: ...
Bram Neijt
bneijt@...
May 6, 2007 12:14 pm
9959
That would require the creation of an extra object at the "is" and "as" steps which would refer back to the original object, or reading ahead on the message...
From the online io reference it seems that the Socket addon has got brand new methods, completely without documentation. Could someone who knows the new...
Hi, I noticed that garbage collection seems to stop working when marksPerAlloc is set to 5.5 or greater, resulting in endlessly growing memory consumption. To...
Should be fixed quite quickly, but it does seem to be a bug. Thanks for reporting it and trying it all out! SteveDekorte seems to have found it and probably...
Bram Neijt
bneijt@...
May 17, 2007 1:21 am
9966
Using IoVM version 20050910 I could have this: Io> 195 asCharacter at(0) ==> 195 However, if I use today's Io (on my PPC Mac), I notice that n asCharacter...
Hi Jon, I'm seeing the same behavior with asCharacter. An alternative is to use atPut on sequence. Io> Sequence clone atPut(0, 198) at(0) ==> 198 asCharacter...
Hi Jonathan, Thanks a lot for digging into this! I understand things have happened since the last time I played with double-byte characters in Io. ;-) /Jon...
Hi, I don't know if my china.io really qualifies as a Flux sample, but if you replaces the one in addons/Flux/samples/China with my latest version here ...
I see in the downloads/changes/ that yesterday Jonathan Wright changed the parser "to do C style () for operators: 1+2*3 == 1+(2)*3". From that example it's...
Hi Jon, The idea of changing () parsing has been kicking around for a year or two. A few weeks back Steve requested that I make the change. The changes to the...
Hi Jonathan, OK, I guess we can live with the new "C style", but except for some updated unit tests and samples, we don't know very much about what has been...
Hi Jon, The change is to how () are treated after an operator. Previously, 1 +(2) was treated as + having the argument 2. Now, it is treated as 1 + _(2), where...
Hi Jonathan, I have now updated my china.io to handle the new C style parsing. It's available here: <http://folk.uio.no/jkleiser/china/> Could you replace the...
Hi Jon, Thanks for the updates. I've pushed out a patch. http://www.quag.geek.nz/gitweb?p=io;a=commit;h=8d01e7820a72fb2d206d0dacaff4713d0c0ad0ce Steve, could...
30 patches in the last week. Contributors: Dag Odenhall Daniel Rosengren Detlef Reichelt Jon Kleiser Jonathan Wright Steve Dekorte (From git logs, so may be...
How do I have to declare a function which takes method as parameter? Similiear to the sortBy method (which however seems to be written in C?) So I have foo :=...
Friedrich Dominicus
frido@...
Jun 15, 2007 12:11 pm
9980
Well, methods activate and blocks don't (unless you intervene and make them). So, if you want to pass a method, something like this would be required: foo :=...
Well, methods activate and blocks don't (unless you intervene and make them). So, if you want to pass a method, something like this would be required: foo :=...
Friedrich
frido@...
Jun 15, 2007 1:22 pm
9982
Change your definition of cmpFunc from: cmpFunc := method(a, b, a < b) to: cmpFunc := block(a, b, a < b) -- Jeremy Tregunna jtregunna@......
Change your definition of cmpFunc from: cmpFunc := method(a, b, a < b) to: cmpFunc := block(a, b, a < b) -- [/quote] sorry, but cmpFun is commented out, the...