aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-05-02 23:44:20 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-05-02 23:44:20 +0200
commit4ec130209bcd88ffde56b9b44e2de2c043519ffc (patch)
tree06fef07fac9fda6461e4e28b5eb2724bece52c92 /src/parse.c
parentwork on porting most internal datastructures to scheme equivalents. (diff)
downloadcalp-4ec130209bcd88ffde56b9b44e2de2c043519ffc.tar.gz
calp-4ec130209bcd88ffde56b9b44e2de2c043519ffc.tar.xz
Think it's only reintroducing of set! left.
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/parse.c b/src/parse.c
index d9a75296..cd64e192 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -46,9 +46,7 @@ int parse_file(char* filename, FILE* f, vcomponent* root) {
TRANSFER(&cline_val, &ctx.str);
/* Actuall end of line, handle value */
- INFO_F("cp: %p", content_pair);
handle_kv(&cline_key, &cline_val, &content_pair, &ctx);
- INFO_F("cp: %p", content_pair);
p_ctx = p_key;
} /* Else continue on current line */
@@ -154,7 +152,6 @@ int handle_kv (
strbuf_cap (key);
strbuf_cap (val);
- INFO_F("%s: %s", key->mem, val->mem);
/*
* The key being BEGIN means that we decend into a new component.