On Sun, Jul 4, 2010 at 6:56 PM, Pascal J. Bourguignon <p...@informatimago.com
> wrote:
> But then you would break reader macros:
> "(install-my-macro-char) {do something funny}"
> ;-)
>
Wow, I did not think about that. The other option, which is not that bad, is
to create a REPL for that string.
cl_object string, stream, object, end;
string = make_simple_base_string(".....");
stream = cl_make_string_input_stream(1,string);
eof = string; /* Marker for EOF */
do {
object = cl_read(3, stream, Cnil, eof);
if (object == eof)
break;
...
si_eval...(object);
} while (1);
--
Instituto de Física Fundamental, CSIC
c/ Serrano, 113b, Madrid 28006 (Spain)
http://juanjose.garciaripoll.googlepages.com
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list