Skip to content

Commit d2744e0

Browse files
author
Chet Ramey
committed
Bash-4.3 patch 39
1 parent af61c54 commit d2744e0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

arrayfunc.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,9 @@ assign_array_var_from_word_list (var, list, flags)
404404
(*var->assign_func) (var, l->word->word, i, 0);
405405
else
406406
array_insert (a, i, l->word->word);
407+
408+
VUNSETATTR (var, att_invisible); /* no longer invisible */
409+
407410
return var;
408411
}
409412

@@ -634,6 +637,10 @@ assign_array_var_from_string (var, value, flags)
634637

635638
if (nlist)
636639
dispose_words (nlist);
640+
641+
if (var)
642+
VUNSETATTR (var, att_invisible); /* no longer invisible */
643+
637644
return (var);
638645
}
639646

patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
2626
looks for to find the patch level (for the sccs version string). */
2727

28-
#define PATCHLEVEL 38
28+
#define PATCHLEVEL 39
2929

3030
#endif /* _PATCHLEVEL_H_ */

0 commit comments

Comments
 (0)