On Fri, 03/11/06, Michael Olson wrote: > Leo <[EMAIL PROTECTED]> writes: > >> BTW, with >> ...... >> <lisp> >> "String" >> (function-returns-a-string) >> </lisp> >> ...... >> >> When publishing, "String" is gone. Is this intentional? > > Yes, because that's interpreted as: > > (progn "String" (function-returns-a-string)). > > You probably want: > > <lisp> > (concat "String" > (function-returns-a-string)) > </lisp>
That clears my confusion. Thanks. -- Leo _______________________________________________ Muse-el-discuss mailing list [email protected] https://mail.gna.org/listinfo/muse-el-discuss
