What is the right way to do this... (setq V "some_str") (setq L '(a)) (setq L (append L ???)) --> ( a ((some_str)) ) i.e. I can do '((some_str)) but wonder if there's an easy way to use '(()) AND have an evaluated value in the middle i.e. quote makes specifying any level of parens easy but doesn't let my use an evaluated value in the middle. Sorry if this is a dumb question
- how to append an element with nested parens and an evaluate... dean
