[REBOL] Re: Context - code included- 2nd version
From: lmecir:mbox:vol:cz at: 15-Sep-2001 21:41
> > It is a feasible idea, but it contains bugs that would prevent it to
work.
same-context?: func [
{
find out, if the given Words
are bound to the same Context
}
word1 [word!]
word2 [any-word!] ;<<<<<<
] [
found? any [
all [
special? word1
special? word2
]
all [
not special? word1
same? word2 first bind to-block mold word2 word1 ;<<<<<<
]
]
]
> What bug? Please, can you make an example?
>
> ---
> Ciao
> Romano
>
e.g.:
same-context? 'a first [a:]
but that is not the only bug