newLISP Fan Club

Forum => newLISP in the real world => Topic started by: ghyll on August 20, 2014, 08:51:19 PM

Title: typo in the newLISP manual?
Post by: ghyll on August 20, 2014, 08:51:19 PM
I think I found a typo in one of the code snippets in the ref function section of the newLISP manual.


; get index vectors for list elements
(set 'pList '(a b (c d (x) e)))
(ref 'x pList)    → (2 2 0)
(ref '(x) pList)   → (2 2)
; the key expression is in a variable
(set 'p '(c d (x) e))
(ref p pList p)     → (2)


(ref p pList p)  should instead be (ref p pList)
Title: Re: typo in the newLISP manual?
Post by: Lutz on August 20, 2014, 09:23:21 PM
Thanks for the correction!