-----Original Message-----I suggest taking a page from GBBopen's book and using something like:
From: Gary King [mailto:gwking@metabang.com]
Sent: Tuesday, 08 March, 2005 13:44
To: Edi Weitz
Cc: ML CL-PPCRE; Kick Damien-DKICK1
Subject: Re: TR: [cl-ppcre-devel] New release 1.2.4
(defmacro with-standard-optimization (&body body)
`(locally (declare (optimize (speed 1) (safety 3) (debug 1)))
,@body))
(defun foo ()
(with-standard-optimization
...))
/x-tad-smaller>
this has the advantage of not requiring the read time evaluation of #. which some view as a security risk.
--
Damien
Kick