Bash-5.1-rc2 release

This commit is contained in:
Chet Ramey
2020-11-03 14:36:06 -05:00
parent 5f2b5d79e0
commit 278db80c36
42 changed files with 775 additions and 1119 deletions
+1 -1
View File
@@ -1191,7 +1191,7 @@ array_expand_index (var, s, len, flags)
exp = (char *)xmalloc (len);
strncpy (exp, s, len - 1);
exp[len - 1] = '\0';
#if 0 /* TAG: maybe bash-5.1 */
#if 0 /* TAG: maybe bash-5.2 */
if ((flags & AV_NOEXPAND) == 0)
t = expand_arith_string (exp, Q_DOUBLE_QUOTES|Q_ARITH|Q_ARRAYSUB); /* XXX - Q_ARRAYSUB for future use */
else