]> git.lizzy.rs Git - nothing.git/commitdiff
TODO(#317)
authorrexim <reximkut@gmail.com>
Sat, 8 Sep 2018 20:59:53 +0000 (03:59 +0700)
committerrexim <reximkut@gmail.com>
Sat, 8 Sep 2018 20:59:53 +0000 (03:59 +0700)
src/script/interpreter.c

index c3a3816bf4db32ced9ca8d477150b0cb58a9d794..6f2fc0c5a8fc793f6f6d872169d20017fdd268ed 100644 (file)
@@ -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) {