aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-10-04 00:18:40 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-10-04 00:18:40 +0200
commit2782987949ffbd8b7ac92cd92a3ab65c78865cb3 (patch)
tree78383bc262c49e9312740740703b430f42c10744
parentActually fix NAME. (diff)
downloadcalp-2782987949ffbd8b7ac92cd92a3ab65c78865cb3.tar.gz
calp-2782987949ffbd8b7ac92cd92a3ab65c78865cb3.tar.xz
Comments in parser.
-rw-r--r--src/parse.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/parse.c b/src/parse.c
index fbfb2387..81312967 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -180,12 +180,12 @@ int parse_file(char* filename, FILE* f, SCM root) {
* The standard (3.4, l. 2675) says that each icalobject must
* end with CRLF. My files however does not, so we also parse
* the end here.
+ *
+ * Actually we don't any more.
+ * Since the last thing in a file should always be END:VCALENDAR
+ * it might be a good idea to verify that. Or we could just, you
+ * know, not.
*/
- ERR("Handling of missing trailing endline not reimplemented.");
-
- // TRANSFER(CLINE_CUR_VAL(&cline), &ctx.str);
- // TODO
- // handle_kv(&cline_key, &cline, &ctx);
}