31846: fix NOEXEC option in execsimple() optimisation

This commit is contained in:
Peter Stephenson 2013-10-18 23:42:07 +01:00
parent 87c482d751
commit 8879c46a48
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-10-18 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 31846: Src/exec.c: fix NOEXEC option in execsimple().
2013-10-18 Barton E. Schaefer <schaefer@zsh.org>
* 31840: Completion/Unix/Command/_make: "read" used wrong $IFS

View File

@ -1087,6 +1087,9 @@ execsimple(Estate state)
if (errflag)
return (lastval = 1);
if (!isset(EXECOPT))
return lastval = 0;
/* In evaluated traps, don't modify the line number. */
if (!IN_EVAL_TRAP() && !ineval && code)
lineno = code - 1;