mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 08:29:54 +02:00
fix for nofork comsubs undoing enclosing command's redirections; fix for binding _ variable in the temporary environment; fix for crash when making special variables arrays; accommodate IFS as array variable; fix for SIGINT arriving while cleaning up a readline incremental search
This commit is contained in:
@@ -102,6 +102,7 @@ convert_var_to_array (SHELL_VAR *var)
|
||||
/* Since namerefs can't be array variables, turn off nameref attribute */
|
||||
VUNSETATTR (var, att_nameref);
|
||||
|
||||
stupidly_hack_special_variables (var->name);
|
||||
return var;
|
||||
}
|
||||
|
||||
@@ -139,6 +140,7 @@ convert_var_to_assoc (SHELL_VAR *var)
|
||||
/* Since namerefs can't be array variables, turn off nameref attribute */
|
||||
VUNSETATTR (var, att_nameref);
|
||||
|
||||
stupidly_hack_special_variables (var->name);
|
||||
return var;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user