> I have a script which works under Core 2.2 but fails under 2.3:
>
> The problem appears to be in the way I use parse, but I
> can�t see what is wrong, particularly since it worked
> under 2.2
>
> Thanks,
>
> Garold (Gary) L. Johnson DYNAMIC Alternatives
Try:
print mold system/options/args
2.3 contains a goof with how the command line args are
passed. What once was a string is now a block containing
a string. Yeah I know: that's silly. The change slipped
in there by accident while the args passing mechanism was
being revamped. (The args passing mechanism used to have a
size limitation. While that limitation was being fixed
there was a proposed plan to change the args string to a
pre-scanned block. However, that plan was decided against
but some intermediate code was accidently left in. Yours
truly is the one to blame for the blunder.)
The next version will correct the arg passing behavior
back to the old style.
Your script should work again with you do:
first system/options/args
My apologies for any command line inconveniences.
-jeff