[REBOL] Re: System data
From: anton:lexicon at: 7-Jan-2003 16:24
A big difference between 1.2.1 and the latest
betas is the "aggressiveness" of the path evaluation.
To be compatible with 1.2.1 and the later betas,
change code such as:
path
to:
do compose [(path)]
That will make sure the path is evaluated.
So in your case, I think you should change:
to-display: to-path path-words
to:
to-display: do compose [(to-path path-words)]
For the reason why, see the changes.txt file that
was included with the Core 2.5.3 release.
(Search for "Less Aggressive Evaluation")
Anton.