<div dir="ltr">You don't show what you did, and what the two implementations complained about.  Indeed, progn is the usual way to have a macro return multiple forms.  progn is defined not to affect the top-level-ness or not-top-level-ness of the current environment.<div>
<br></div><div>But I'll make a guess what's wrong.  The in-package form changes the value of *package*, which affects where the reader interns symbols, but your defun form is _not_ subsequently processed by the reader.  The symbols in the defun are already interned symbols, not strings, and are interned in whatever package they were read into when the reader saw them.</div>
<div><br></div><div>HTH</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Mar 14, 2014 at 8:45 AM, Paul Tarvydas <span dir="ltr"><<a href="mailto:paultarvydas@gmail.com" target="_blank">paultarvydas@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">What is the best way to write a macro that returns more than one form to the top level?  E.g.<br>
<br>
(in-package :xxx)<br>
(defun ...)<br>
<br>
I've been wrapping a progn around the result, but LW doesn't like it very much, and SBCL seems to hate it.<br>
<br>
Thanks<span class="HOEnZb"><font color="#888888"><br>
pt<br>
<br>
<br>
</font></span></blockquote></div><br></div>