]> git.ipfire.org Git - thirdparty/bash.git/commitdiff
Bash-4.3 patch 39
authorChet Ramey <chet.ramey@case.edu>
Tue, 19 May 2015 19:49:51 +0000 (15:49 -0400)
committerChet Ramey <chet.ramey@case.edu>
Tue, 19 May 2015 19:49:51 +0000 (15:49 -0400)
arrayfunc.c
patchlevel.h

index 658b5aa51d5ee08db50e918d55c21edfb022176c..c4bae0ae2f9962cb1712729c9bf6b7f257aff745 100644 (file)
@@ -404,6 +404,9 @@ assign_array_var_from_word_list (var, list, flags)
       (*var->assign_func) (var, l->word->word, i, 0);
     else
       array_insert (a, i, l->word->word);
+
+  VUNSETATTR (var, att_invisible);     /* no longer invisible */
+
   return var;
 }
 
@@ -634,6 +637,10 @@ assign_array_var_from_string (var, value, flags)
 
   if (nlist)
     dispose_words (nlist);
+
+  if (var)
+    VUNSETATTR (var, att_invisible);   /* no longer invisible */
+
   return (var);
 }
 
index 8d34c53e3c0c7bb7a58e528c2c8bf839c6cedd5d..058e61791151e3d4b9c25cbd20887dffeadee4b0 100644 (file)
@@ -25,6 +25,6 @@
    regexp `^#define[   ]*PATCHLEVEL', since that's what support/mkversion.sh
    looks for to find the patch level (for the sccs version string). */
 
-#define PATCHLEVEL 38
+#define PATCHLEVEL 39
 
 #endif /* _PATCHLEVEL_H_ */