[REBOL] A Special word handling bug
From: lmecir::mbox::vol::cz at: 22-May-2001 20:29
Hi Rebols, this works as expected: special?: func [ {determines, if a Word is a Special Word} word [any-word!] ] [ error? try [error? get/any :word] ] special? first to block! "'a" ; == true special?2: func [ {determines, if a Word is a Special Word} word [any-word!] ] [ error? try [error? get/any word] ] special?2 first to block! "'a" ; == Rebol CRASH Regards Ladislav