diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-07-03 15:15:50 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:27 -0400 |
commit | 6d0ffe229192bd3eea0f8997a2cc91a01cda8b38 (patch) | |
tree | bbbdc22913e67e8cde947f7f59cff48cf8db2585 | |
parent | a3e217c58fa4f9e065d68ad546f2f470e85fc511 (diff) | |
download | roux-6d0ffe229192bd3eea0f8997a2cc91a01cda8b38.tar.gz |
fix comment
-rw-r--r-- | lisc/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/parse.c b/lisc/parse.c index b54437b..20c3dc6 100644 --- a/lisc/parse.c +++ b/lisc/parse.c @@ -448,7 +448,7 @@ parsefn(FILE *f) lnum = 1; fn = alloc(sizeof *fn); ps = parseline(PLbl); - fn->start = curb; /* we should have parsed the start label */ + fn->start = curb; /* todo, it's a hack */ do ps = parseline(ps); while (ps != PEnd); |