aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-08 23:33:05 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-08 23:33:05 +0100
commit916df6d62ca35b6d5127e9eff0a20f6b0f1a917d (patch)
treeebf35bbba50018e337998d924cbd6c4ae62cd6c2 /src
parentdefinitions for the syntax tree (diff)
downloadmds-916df6d62ca35b6d5127e9eff0a20f6b0f1a917d.tar.gz
mds-916df6d62ca35b6d5127e9eff0a20f6b0f1a917d.tar.bz2
mds-916df6d62ca35b6d5127e9eff0a20f6b0f1a917d.tar.xz
add todo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-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 */