Trivial typo in ecl_boundp().

This commit is contained in:
Juan Jose Garcia Ripoll 2010-02-21 22:45:42 +01:00
parent ec9727f9f5
commit f0a022acdf

View file

@ -149,7 +149,7 @@ ecl_boundp(cl_env_ptr env, cl_object sym)
} else {
if (!SYMBOLP(sym))
FEtype_error_symbol(sym);
return ECL_SYM_VAL(the_env, sym) != OBJNULL;
return ECL_SYM_VAL(env, sym) != OBJNULL;
}
}