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

[REBOL] CORE 2.5.2 Bugs

From: lmecir:mbox:vol:cz at: 8-May-2002 19:17

1) The FOR function still contains all the bugs I reported a while ago (incorrect series handling, incorrect BREAK/RETURN handling for some datatypes, incorrect THROW handling) 2) The SAME? function still crashes the interpreter, when it compares cyclic blocks, although it can be easily repaired as I suggested a while ago. (no complicated cyclic block checking needed) 3) USE still doesn't work correctly, if its first argument is a WORD! word: use 'local ['local] ; == local same? word in rebol/words word ; == true 4) The END bug as in:
>> probe make object! [exit a: b:]
make object! [ a: end b: unset ] Is still present -L