Since dpp now generates code that uses 'the_env', it has to be defined in functions that use @(return)

This commit is contained in:
Juan Jose Garcia Ripoll 2008-10-11 23:47:40 +02:00
parent ed584a62c5
commit 5a41a55a2d
12 changed files with 41 additions and 2 deletions

View file

@ -629,6 +629,7 @@ si_bc_disassemble(cl_object v)
cl_object
si_bc_split(cl_object b)
{
const cl_env_ptr the_env = ecl_process_env();
cl_object vector;
cl_object data;
cl_object lex = Cnil;
@ -649,6 +650,7 @@ si_bc_split(cl_object b)
cl_object
si_bc_file(cl_object b)
{
cl_env_ptr the_env = ecl_process_env();
if (type_of(b) == t_bclosure) {
b = b->bclosure.code;
}