aboutsummaryrefslogtreecommitdiff
path: root/parse.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-10 01:05:15 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-02-10 01:05:15 +0100
commit226e98b5fb330449996801dcbaa1a7b044d711ae (patch)
tree4054d5c7bb4918245b063d6bc1c168b20ee07e02 /parse.h
parentAdd attr_helper to graph output. (diff)
downloadcalp-226e98b5fb330449996801dcbaa1a7b044d711ae.tar.gz
calp-226e98b5fb330449996801dcbaa1a7b044d711ae.tar.xz
Minor general cleanup.
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/parse.h b/parse.h
index ad1cebc2..c02c07c8 100644
--- a/parse.h
+++ b/parse.h
@@ -20,17 +20,12 @@
*/
#define SEGSIZE 75
-#define LINE(nr, key, value) fprintf(stderr, "(%i) %i: [%s] := [%s]\n", __LINE__, nr, key, value);
+// #define LINE(nr, key, value) fprintf(stderr, "(%i) %i: [%s] := [%s]\n", __LINE__, nr, key, value);
typedef enum {
p_key, p_value, p_param_name, p_param_value
} part_context;
-typedef enum {
- s_none = 1, s_calendar, s_event,
- s_skip
-} scope_context;
-
typedef struct {
char* filename;
LLIST(strbuf) key_stack;