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:
Chet Ramey
2025-08-20 11:08:28 -04:00
parent 3160c0b89c
commit 0864568359
21 changed files with 131 additions and 20 deletions
+1 -1
View File
@@ -4156,7 +4156,7 @@ bind_lastarg (char *arg)
if (arg == 0)
arg = "";
var = bind_variable ("_", arg, 0);
var = bind_variable ("_", arg, ASS_NOTEMPENV);
if (var)
VUNSETATTR (var, att_exported);
}