From: rexim Date: Sat, 8 Sep 2018 20:59:53 +0000 (+0700) Subject: TODO(#317) X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=72e77a5ec86522cf0ddd3e38884bbe5e7b81d3fc;p=nothing.git TODO(#317) --- diff --git a/src/script/interpreter.c b/src/script/interpreter.c index c3a3816b..6f2fc0c5 100644 --- a/src/script/interpreter.c +++ b/src/script/interpreter.c @@ -114,7 +114,7 @@ static struct EvalResult eval_funcall(struct Expr scope, struct Cons *cons) return eval_failure("Unknown function", clone_expr(cons->car)); } -/* TODO: eval does not return new scope after the evaluation */ +/* TODO(#317): eval does not return new scope after the evaluation */ struct EvalResult eval(struct Expr scope, struct Expr expr) { switch(expr.type) {