Page 1 of 1

Mistake in indexing?

Posted: Fri Aug 05, 2005 12:15 pm
by alex
See newliisp dialog:
  • > (setq mylist '(1 (2 2)))
    (1 (2 2))
    > (setq x 1)
    1
    > (mylist 1 1)
    2
    > (mylist 1 x)
    2
    > (mylist x 1)
    (2 2)
Why
(mylist x 1) -> (2 2)
?
It is write?

Posted: Fri Aug 05, 2005 12:29 pm
by Lutz
This was fixed in 8.5.10 and is working correctly on 8.6.0 and 8.6.1.

Lutz

Posted: Fri Aug 05, 2005 7:23 pm
by alex
I am crazy :(
:)