summaryrefslogtreecommitdiff
path: root/Src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/parse.c')
-rw-r--r--Src/parse.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/parse.c b/Src/parse.c
index 7ea6b28d3..15f1eba41 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -478,9 +478,10 @@ par_event(void)
} else {
int oec = ecused;
- par_event();
- if (ecused == oec)
+ if (!par_event()) {
+ ecused = oec;
ecbuf[p] |= wc_bdata(Z_END);
+ }
}
return 1;
}