From f0796f742df8c36ba50eeb877b603d694f629bef Mon Sep 17 00:00:00 2001 From: herbert Date: Fri, 25 Feb 2005 22:51:38 +1100 Subject: Only reread exitstatus on EXEXIT in exitshell. --- ChangeLog | 1 + src/trap.c | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f26353d..3febddd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ * Changed boolean rootshell into shlvl counter. * Catch set -e exits within built-in commands. * Size optimisations with state/s in main(). + * Only reread exitstatus on EXEXIT in exitshell. 2005-01-31 Gerrit Pape diff --git a/src/trap.c b/src/trap.c index 7bc479b..6ccca08 100644 --- a/src/trap.c +++ b/src/trap.c @@ -352,16 +352,17 @@ exitshell(void) struct jmploc loc; char *p; int status; - int jmp; #ifdef HETIO hetio_reset_term(); #endif - jmp = setjmp(loc.loc); status = exitstatus; TRACE(("pid %d, exitshell(%d)\n", getpid(), status)); - if (jmp) + if (setjmp(loc.loc)) { + if (exception == EXEXIT) + _exit(exitstatus); goto out; + } handler = &loc; if ((p = trap[0]) != NULL && *p != '\0') { trap[0] = NULL; -- cgit 1.4.1