aboutsummaryrefslogtreecommitdiff
path: root/src/parse.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-10-06 13:41:00 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-10-06 13:41:00 +0200
commitab964d17145114eda93cda35f69a4b1e1779e242 (patch)
tree2288777a11a1d44539f3790a3aa1e60051452667 /src/parse.h
parentMinor cleanup in scheme code. (diff)
downloadcalp-ab964d17145114eda93cda35f69a4b1e1779e242.tar.gz
calp-ab964d17145114eda93cda35f69a4b1e1779e242.tar.xz
Cleanup in C code.
Diffstat (limited to 'src/parse.h')
-rw-r--r--src/parse.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/parse.h b/src/parse.h
index a5169dd7..898abe5b 100644
--- a/src/parse.h
+++ b/src/parse.h
@@ -47,13 +47,6 @@ typedef struct {
FILE* f;
- /*
- * context stacks used since ICS files form a tree. key_stack is
- * only for sequrity purposes.
- */
- // LLIST(strbuf) key_stack;
- // LLIST(vcomponent) comp_stack;
-
/* Number for unfolded lines
* TODO remove this
* */
@@ -64,11 +57,6 @@ typedef struct {
int pline;
int pcolumn;
- /*
- * String which we write everything read into.
- * Later copied to appropiate places.
- */
- // strbuf str;
} parse_ctx;
INIT_F(parse_ctx, FILE* f, char* filename);