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:[EMAIL PROTECTED]

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to