> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
> pat665
> Sent: Thursday, May 09, 2002 4:41 PM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> 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

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

Reply via email to