[REBOL] Make-doc-pro for rebol 2.5.2
From: rebol665::ifrance::com at: 9-May-2002 16:41
Hi rebollers, Hi Robert
I have fixed make-doc-pro to run with rebol 2.5.2. The problem was in the
emit-section function.
--old version--
emit-section: func [num] [emit (to-word join "sect" num) text title: true]
--new version--
emit-section: func [num /local new-word][
new-word: to-word join "sect" num
emit :new-word text title: true
]
It seems to me that it is the "Less Aggressive Evaluation" that is
responsible for the change. I'll leave that to the guru !
Patrick