diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-25 18:41:34 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-25 18:41:34 +0100 |
commit | ae3e76a90ce0b6c810471d6602ffadf6bd182337 (patch) | |
tree | 97d66d072a45f904db8fb5345752d23f607934bd /src/parse.c | |
parent | 6ca71dd7a7f10fa6857f1a1bc586059cd78e275a (diff) |
Pre-merge
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 4 |
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; |