[cl-emb-devel] New release 0.0.2

Stefan Scholl sscholl at common-lisp.net
Mon Aug 16 01:13:17 UTC 2004


New release 0.0.2

You can download it direct from
http://www.common-lisp.net/project/cl-emb/
or install it with ASDF-Install.

Changes:
Added special variables *emb-start-marker* and *emb-end-marker*


This change was inspired by the patches Peter Minten sent me.
Thanks!

You can now use other start and end markers instead of "<%" and
"%>", which are the default.

Examble:

CL-USER> (let ((emb:*emb-start-marker* "<?emb")
               (emb:*emb-end-marker* "?>"))
           (emb:register-emb "marker-test"
                             "42 + 42 = <?emb= (+ 42 42) ?>"))
#<CL-EMB::EMB-FUNCTION {97BEFD9}>
CL-USER> (emb:execute-emb "marker-test")
"42 + 42 = 84"







More information about the cl-emb-devel mailing list