Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[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