[REBOL] Re: A collection of garbage
From: Carl:rebol at: 12-Jul-2003 2:43
Hi Patrick,
About:
>> print stats/types Stats: improper block termination: #6D00A0
Stats: improper block termination: #6D00B0
Stats: improper block termination: #6D00C0
Stats: improper block termination: #6D00E0
Stats: improper block termination: #6D0160
** Script Error: end! word has no context
** Near: end! 377 unset! 3454 error!
Actually, it's not a failure. These unterminated blocks are normal and are used in
the memory manager. They are not executed, so it's never a problem. We need to
remove this message so as not to confuse things.
The script error is from using PRINT. The function returns a block that should
not be reduced, so best to use PROBE instead.
-Carl