mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-11 22:20:49 +02:00
speedups for character processing in a multibyte locale when expanding $'...'; cosmetic fix for select command when read returns EOF; fix for a forced interactive shell running under emacs with a pipe for stdin; fix for local nameref variables with the same name as variables in a function's temporary environment; fix for x=y local -n x' not making x' visible as a local variable; turn off nameref attribute for local nameref variables converted to arrays
This commit is contained in:
@@ -1751,7 +1751,11 @@ set_bash_input (void)
|
||||
}
|
||||
}
|
||||
else
|
||||
with_input_from_stream (default_input, dollar_vars[0]);
|
||||
{
|
||||
with_input_from_stream (default_input, dollar_vars[0]);
|
||||
if (forced_interactive && running_under_emacs && fd_ispipe (fileno (default_input)))
|
||||
stream_setsize (1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Close the current shell script input source and forget about it. This is
|
||||
|
||||
Reference in New Issue
Block a user