aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c
index abcd149..38d5f90 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -111,13 +111,13 @@ int ParseLine(Line *line, const char *source)
static const char *quote_start_chars[2] =
{
"",
- "\"'("
+ "\"'(["
};
static const char *quote_end_chars[2] =
{
"",
- "\"')"
+ "\"')]"
};
const char *p = NULL;