packages feed

language-bash-0.9.1: tests/pretty/heredoc-in-condition.out

if true <<EOF;
here doc
EOF
then
    true;
fi;
until true <<EOF;
here doc
EOF
do
    true;
done;
while true <<EOF;
here doc
EOF
do
    true;
done;