On Fri, Jan 21, 2022 at 6:28 PM Chet Ramey <chet.ra...@case.edu> wrote: > a. Fixed a bug that assigned a value to the variable name supplied as an > argument to `wait -p' when there were no jobs.
This doesn't seem like it's fixed $ bash -c 'echo $BASH_VERSION; unset foo; for i in 1 2 3; do wait -p foo; declare -p foo; done' 5.2.0(13)-alpha declare -- foo="0" declare -- foo="1638738736" declare -- foo="1638738960" > e. Here-document parsing now handles $'...' and $"..." quoting when reading > the > here-document body. And I don't think this is very useful with aposthropes remaining $ cat <<X $'\n' X ' ' Regards