commit bash-20160205 snapshot

This commit is contained in:
Chet Ramey
2016-02-09 09:03:46 -05:00
parent d345f817ff
commit 0f0e2f213d
2 changed files with 10 additions and 0 deletions
+7
View File
@@ -10406,3 +10406,10 @@ doc/{bash.1,bashref.texi}
- read: modify description to make it more clear that the line is split
using the same rules as word splitting, and use `delimiters' instead
of `separators', which people read the wrong way
2/2
---
variables.c
- initialize_shell_variables: allow FUNCNEST to set funcnest_max when
imported from the environment. Inspired by
https://bugzilla.redhat.com/show_bug.cgi?id=1274553
+3
View File
@@ -647,6 +647,9 @@ initialize_shell_variables (env, privmode)
sv_shcompat ("BASH_COMPAT");
/* Allow FUNCNEST to be inherited from the environment. */
sv_funcnest ("FUNCNEST");
/* Initialize the dynamic variables, and seed their values. */
initialize_dynamic_variables ();
}