Bash-4.3 patch 36
This commit is contained in:
parent
e57a256f4e
commit
4e3e5312a5
2 changed files with 7 additions and 5 deletions
|
|
@ -25,6 +25,6 @@
|
||||||
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
||||||
looks for to find the patch level (for the sccs version string). */
|
looks for to find the patch level (for the sccs version string). */
|
||||||
|
|
||||||
#define PATCHLEVEL 35
|
#define PATCHLEVEL 36
|
||||||
|
|
||||||
#endif /* _PATCHLEVEL_H_ */
|
#endif /* _PATCHLEVEL_H_ */
|
||||||
|
|
|
||||||
10
variables.c
10
variables.c
|
|
@ -2833,10 +2833,12 @@ bind_int_variable (lhs, rhs)
|
||||||
#endif
|
#endif
|
||||||
v = bind_variable (lhs, rhs, 0);
|
v = bind_variable (lhs, rhs, 0);
|
||||||
|
|
||||||
if (v && isint)
|
if (v)
|
||||||
VSETATTR (v, att_integer);
|
{
|
||||||
|
if (isint)
|
||||||
VUNSETATTR (v, att_invisible);
|
VSETATTR (v, att_integer);
|
||||||
|
VUNSETATTR (v, att_invisible);
|
||||||
|
}
|
||||||
|
|
||||||
return (v);
|
return (v);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue