aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/mds-kbdc/raw-data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-kbdc/raw-data.c b/src/mds-kbdc/raw-data.c
index 69b6b64..8f261ec 100644
--- a/src/mds-kbdc/raw-data.c
+++ b/src/mds-kbdc/raw-data.c
@@ -147,7 +147,7 @@ static size_t remove_comments(char* restrict content, size_t size)
size_t n_ptr = 0, o_ptr = 0;
int comment = 0, quote = 0, escape = 0;
- while (o_ptr < size)
+ while (o_ptr < size) /* TODO nested quotes */
{
char c = content[o_ptr++];
/* Remove comment */