stop chasing mallocs

I think for chasing mallocs to be meaningful,
I should have a better model of how every piece
of the code is connected. But that would be difficult
and have required advanced planning,
which I don't feel like doing for this project.
This commit is contained in:
NunoSempere 2023-05-07 23:02:28 -04:00
parent 95118bc1d9
commit 4f8f020944
2 changed files with 1 additions and 1 deletions

BIN
mumble

Binary file not shown.

View File

@ -1064,7 +1064,7 @@ lispval* evaluate_lispval(lispval* l, lispenv* env)
temp_expression->type = LISPVAL_SEXPR;
lispval* answer = evaluate_lispval(temp_expression, evaluation_env);
// delete_lispval(temp_expression);
// delete_lispenv(evaluation_env);
destroy_lispenv(evaluation_env);
// lispval* answer = builtin_eval(f->manipulation, f->env);
// destroy_lispenv(f->env);
return answer;