From df64451be25ad4a71c24b10e12c7688ae6cea6a2 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Tue, 2 May 2023 20:47:50 -0400 Subject: [PATCH] delete some old code --- src/mumble.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/mumble.c b/src/mumble.c index 01ed1bb..25c8249 100644 --- a/src/mumble.c +++ b/src/mumble.c @@ -865,17 +865,6 @@ lispval* evaluate_lispval(lispval* l, lispenv* env) lispval_append_child(operands, l->cell[i]); } - /* - lispval* temp = clone_lispval(l); - lispval* f = pop_lispval(temp, 0); - // pop is destructive. - lispval* operands = temp; - */ - // lispval* operation = clone_lispval(l->cell[0]); - // lispval* operands = lispval_sexpr(); - // for (int i = 1; i < l->count; i++) { - // lispval_append_child(operands, l->cell[i]); - // } if (VERBOSE) printfln("Applying function to operands"); // lispval* answer = lispval_num(42);