typo in the newLISP manual?

Q&A's, tips, howto's
Locked
ghyll
Posts: 14
Joined: Mon Jul 14, 2014 1:15 am

typo in the newLISP manual?

Post by ghyll »

I think I found a typo in one of the code snippets in the ref function section of the newLISP manual.

Code: Select all

; 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)

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: typo in the newLISP manual?

Post by Lutz »

Thanks for the correction!

Locked