Hi myself and all others,

I succeeded to simplify further the issue. The following PARSE crashes Rebol

rule1: [
    (rule: copy/deep rule2)
    rule
    (print "rule1 done")
]

rule2: [
    (rule: copy/deep rule3)
    rule
    (print "rule2 done")
]

rule3: [
    (
        recycle
        print "rule3 done"
    )
]

parse "" rule1

Cheers
-L

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to