[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Physical Copy of a structure?



> How can i make a physical copy of a structure? 
> 

Use COPY-structure-name.  In your case:

(setq other (copy-test one))

Look at section 19.5 in CLTL2 for more info.

E.