diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/loop.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/loop.c b/Src/loop.c index 2f639fd5a..82d2fe31a 100644 --- a/Src/loop.c +++ b/Src/loop.c @@ -659,8 +659,9 @@ exectry(Estate state, int do_exec) try_tryflag = save_try_tryflag; - /* Don't record errflag here, may be reset. */ - endval = lastval; + /* Don't record errflag here, may be reset. However, */ + /* endval should show failure when there is an error. */ + endval = lastval ? lastval : errflag; freeheap(); |