summaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.c b/parser.c
index 312c5476..ba862eb2 100644
--- a/parser.c
+++ b/parser.c
@@ -1157,7 +1157,7 @@ static int is_balanced_line(const wchar_t *line, void *ctx)
break;
case ')': case ']': case '}':
{
- enum state match = 0;
+ enum state match = ST_START;
switch (ch) {
case ')': match = ST_PAR; break;
case ']': match = ST_BKT; break;