Is it possible to define macros foo & bar so that the following code:<br><br>(foo '(1 2 3))<br><br>... some junk ...<br><br>(bar)<br><br>becomes, at compile time:<br><br>'()<br><br>... some junk ...<br><br>'(1 2 3)<br>
<br><br>-- the real question being, right now, each macro expansion seems to happen in it's own little world -- is there anyway they can communicate?<br><br>Thanks!<br><br><br>