[REBOL] Re: Parse Problem
From: arolls:idatam:au at: 30-Oct-2001 11:02
I can't tell you exactly why it's wrong, but I an say that you are in the parse dialect when you refer to field/1, so maybe it's not handling paths in the manner you expect. In my test I got the same error, and fixed it by setting a new word, f1, outside the parse, then referencing f1 inside the parse: foreach field fields [ f1: field/1 ... parse ibidem [any [to f1 ... ]] ... ] Anton.