![]() |
|
|
|
|
1
5th October 21:23
External User
Posts: 1
|
The following illustrates what you are trying to do,
but directly using SETF of GETF [1]> (defvar *config* '(a 1 b 2)) *CONFIG* [2]> *config* (A 1 B 2) [3]> (setf (getf *config* 'a) 100) 100 [4]> *config* (A 100 B 2) See http://www.lispworks.com/reference/H...ody/f_getf.htm and http://gigamonkeys.com/book/beyond-l...ons-cells.html -- Jack Unrue |
|
|
|