Subject: Re: format directive "~{...~}" From: Erik Naggum <erik@naggum.no> Date: 2000/01/11 Newsgroups: comp.lang.lisp Message-ID: <3156569413180279@naggum.no> * Shin <fxn@retemail.es> | USER(1): (format nil "(~{~a~^,~% ~}))" (list 'one 'two 'three)) | "(ONE, | TWO, | THREE))" for this to work, you would need to do ~& first, and it will fail to produce the correct output if any forms are nested. using the pretty-printer interface will work in such cases. #:Erik