]> git.ipfire.org Git - thirdparty/bash.git/commitdiff
Bash-4.3 patch 17
authorChet Ramey <chet.ramey@case.edu>
Fri, 16 May 2014 18:18:57 +0000 (14:18 -0400)
committerChet Ramey <chet.ramey@case.edu>
Fri, 16 May 2014 18:18:57 +0000 (14:18 -0400)
patchlevel.h
variables.c

index 706588e6f4484e0e0630bbc9f192a10d82ec0ca5..2ff299b7e0d73d9396bda2dc75f3e9de61c29d34 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 16
+#define PATCHLEVEL 17
 
 #endif /* _PATCHLEVEL_H_ */
index 70fac3bd0eb9b1fbc5972299f289e710d5354242..cdc54bcea6c740fd8ca477ca6de4fdf3b91a8712 100644 (file)
@@ -2197,10 +2197,7 @@ make_local_variable (name)
   /* local foo; local foo;  is a no-op. */
   old_var = find_variable (name);
   if (old_var && local_p (old_var) && old_var->context == variable_context)
-    {
-      VUNSETATTR (old_var, att_invisible);     /* XXX */
-      return (old_var);
-    }
+    return (old_var);
 
   was_tmpvar = old_var && tempvar_p (old_var);
   /* If we're making a local variable in a shell function, the temporary env