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

[REBOL] Re: REBOL/Core 2.5.3 Released

From: andreas:bolka:gmx at: 4-Aug-2002 16:32

Saturday, August 3, 2002, 6:08:19 AM, Carl wrote:
> A new REBOL/Core has been released for testing purposes. > Check out the list of changes and find out where to get > it at: > http://www.reboltech.com/downloads/changes.html
-- snip -- 2.15. ALTER added to Core The ALTER function found only in View is general purpose and has been made available in all version of REBOL. -- snap -- 'alter in new /core is broken:
>> s: [ 1 2 3 4 5 6 ]
== [1 2 3 4 5 6]
>> alter s 4
== [2 3 4 5 6] a quick look at the 'source reveals the problem either temp: find series value [remove series] [append series value] should read either temp: find series value [remove temp] [append series value] [submitted to feedback] -- Best regards, Andreas mailto:[andreas--bolka--gmx--net]