summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-07-03 15:15:50 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:27 -0400
commit6d0ffe229192bd3eea0f8997a2cc91a01cda8b38 (patch)
treebbbdc22913e67e8cde947f7f59cff48cf8db2585 /lisc
parenta3e217c58fa4f9e065d68ad546f2f470e85fc511 (diff)
downloadroux-6d0ffe229192bd3eea0f8997a2cc91a01cda8b38.tar.gz
fix comment
Diffstat (limited to 'lisc')
-rw-r--r--lisc/parse.c2
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);