[REBOL Helpdesk] #4608
[1/1] from: al::bri::xtra::co::nz at: 5-Oct-2000 20:00
> Bug! - 'second on object containing ONE hash! has TWO hash! !!
>> o: make object! [b: make block! [] b2: make block! [] b3: make block! []]
>> print mold second o
[
make object! [
b: []
b2: []
b3: []
] [] [] []]
>>
>> insert tail o/b 1
== []
>> print mold second o
[
make object! [
b: [1]
b2: []
b3: []
] [1] [] []]
>> insert tail o/b2 2
== []
>> print mold second o
[
make object! [
b: [1]
b2: [2]
b3: []
] [1] [2] []]
A similar thing also happens with an object! containing block!s. Perhaps
it's fault with 'second and 'object! ?
Andrew Martin
ICQ: 26227169
http://members.nbci.com/AndrewMartin/