diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/parse.c | 5 |
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; } |