> why a fails and b works
That should be "b" fails and "a" works.
Note also that the following function works:
to-blk: function [string] [blk] [
blk: copy []
foreach token parse string "" [append blk to-word token]
return blk
]
>> c: to-blk "btn green"
== [btn green]
>> view layout c
Regards,
Ashley
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.
