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>
--
Michael Olson -- FSF Associate Member #652 -- http://www.mwolson.org/
Interests: Emacs Lisp, text markup, protocols -- Jabber: mwolson_at_hcoop.net
/` |\ | | | Projects: Emacs, Muse, ERC, EMMS, Planner, ErBot, DVC
|_] | \| |_| Reclaim your digital rights by eliminating DRM.
See http://www.defectivebydesign.org/what_is_drm for details.
pgp7DK6lKJhjO.pgp
Description: PGP signature
_______________________________________________ Muse-el-discuss mailing list [email protected] https://mail.gna.org/listinfo/muse-el-discuss
