···11+# Automatically generated by `update-patch-set.sh'; do not edit.22+33+patch: [44+]
-17
pkgs/shells/bash/fix-pop-var-context-error.patch
···11-Excerpted from <https://git.savannah.gnu.org/cgit/bash.git/commit/?h=devel&id=055a4552c901e43e6a6007f5bc664a33698dbf85>.22-33-Original author: Chet Ramey <chet.ramey@case.edu>44-55---- variables.c66-+++ variables.c77-@@ -5413,7 +5413,9 @@ pop_var_context ()88- vcxt = shell_variables;99- if (vc_isfuncenv (vcxt) == 0)1010- {1111-- internal_error (_("pop_var_context: head of shell_variables not a function context"));1212-+ /* If we haven't flushed all of the local contexts already, flag an error */1313-+ if (shell_variables != global_variables || variable_context > 0)1414-+ internal_error (_("pop_var_context: head of shell_variables not a function context"));1515- return;1616- }1717-