diff options
Diffstat (limited to 'Src/exec.c')
-rw-r--r-- | Src/exec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Src/exec.c b/Src/exec.c index 4c831fe26..f186a1be2 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -2557,7 +2557,9 @@ gethere(char *str, int typ) int ef = errflag; parsestr(buf); - errflag = ef; + + if (!errflag) + errflag = ef; } s = dupstring(buf); zfree(buf, bsiz); |