commit bash-20121221 snapshot

This commit is contained in:
Chet Ramey
2013-01-03 10:47:42 -05:00
parent 77b3aacbdf
commit 36eb585cfa
51 changed files with 33625 additions and 656 deletions
+3 -3
View File
@@ -787,11 +787,11 @@ run_exit_trap ()
retval = trap_saved_exit_value;
running_trap = 1;
code = setjmp (top_level);
code = setjmp_nosigs (top_level);
/* If we're in a function, make sure return longjmps come here, too. */
if (return_catch_flag)
function_code = setjmp (return_catch);
function_code = setjmp_nosigs (return_catch);
if (code == 0 && function_code == 0)
{
@@ -868,7 +868,7 @@ _run_trap_internal (sig, tag)
if (return_catch_flag)
{
COPY_PROCENV (return_catch, save_return_catch);
function_code = setjmp (return_catch);
function_code = setjmp_nosigs (return_catch);
}
flags = SEVAL_NONINT|SEVAL_NOHIST;