On 11/7/05, Coussement Christophe <[EMAIL PROTECTED]> wrote: > > Hi list, > > I recently got: > > >> f: func [arg][probe arg] > >> f [/a/b/c] > [/a /b /c] > > So there's some kind of processing of the block content? I thought block > protected their content from evaluation ? How comes ? Any idea ? >
Syntax-error. you wrote /a/b/c , not a/b/c . rebol does not look for a space here, so it takes /a, then /b, then /c . And molds it back with spaces. weird parser. > -- christophe > -- > To unsubscribe from the list, just send an email to > lists at rebol.com with unsubscribe as the subject. > > -- -Volker "Any problem in computer science can be solved with another layer of indirection. But that usually will create another problem." David Wheeler -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
