[REBOL] Re: Make-doc-pro for rebol 2.5.2
From: robert:muench:robertmuench at: 10-May-2002 11:03
> -----Original Message-----
> From: [rebol-bounce--rebol--com] [mailto:[rebol-bounce--rebol--com]]On Behalf Of
> pat665
> Sent: Thursday, May 09, 2002 4:41 PM
> To: [rebol-list--rebol--com]; [feedback--rebol--com]
> Subject: [REBOL] Make-doc-pro for rebol 2.5.2
> 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 !
Hi Patrick, thanks for posting this. And yes, that's the correct fix for the
problem. Robert