diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-03-17 01:24:32 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-03-17 01:24:32 +0000 |
commit | 7f8208f177d6026a6cb44519234535b86d88c34b (patch) | |
tree | 5609d5a993577f276669b3076b2c72c16c4535a9 /shells/bash2 | |
parent | cac480016d9b09f303db786ef329a01b42b8db27 (diff) |
Notes
Diffstat (limited to 'shells/bash2')
-rw-r--r-- | shells/bash2/files/patch-execute_cmd.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/shells/bash2/files/patch-execute_cmd.c b/shells/bash2/files/patch-execute_cmd.c new file mode 100644 index 000000000000..e50bfb5bd1e0 --- /dev/null +++ b/shells/bash2/files/patch-execute_cmd.c @@ -0,0 +1,20 @@ +--- execute_cmd.c.shellfunc Tue Jan 25 11:29:11 2000 ++++ execute_cmd.c Tue May 2 21:26:24 2000 +@@ -2762,6 +2762,8 @@ + if (tc && (flags & CMD_IGNORE_RETURN)) + tc->flags |= CMD_IGNORE_RETURN; + ++ old_shell_function = this_shell_function; ++ + if (subshell == 0) + { + begin_unwind_frame ("function_calling"); +@@ -2843,6 +2845,8 @@ + + if (variable_context == 0 || this_shell_function == 0) + make_funcname_visible (0); ++ ++ this_shell_function = old_shell_function; + + return (result); + } |