]> git.lizzy.rs Git - nothing.git/commitdiff
TODO(#289)
authorrexim <reximkut@gmail.com>
Sun, 19 Aug 2018 19:06:15 +0000 (02:06 +0700)
committerrexim <reximkut@gmail.com>
Sun, 19 Aug 2018 19:06:15 +0000 (02:06 +0700)
src/script/parser.c

index 8117ad8c34335fbf44e9177810fc083cbf29b68d..18cebe3188e436f6ca2c55dc8645d41b0d91e3bb 100644 (file)
@@ -87,7 +87,7 @@ struct ParseResult create_expr_from_str(const char *str,
 
             return parse_success(atom_as_expr(create_atom(ATOM_NUMBER, x)));
         } else if (isalpha(str[*cursor])) {
-            /* TODO: create_expr_from_str does not support symbols */
+            /* TODO(#289): create_expr_from_str does not support symbols */
             return parse_failure("Symbols are not supported");
         }
     }