Hi, "Bruce Korb" <[EMAIL PROTECTED]> writes:
> SCM expr = scm_makfrom0str( pzExpr ); That's deprecated as of 1.8, use `scm_from_locale_string ()'. > scm_t_port* pt; I wouldn't recommend using this structure as it's in a semi-internal, undocumented state. :-) Anyway, why not just use `scm_c_eval_string ()'? It'd be really safer than "rolling your own". Thanks, Ludovic.