> If not, would it be too difficult to do it myself?
On a second thought, it would be easier for me to just revert the
binary incompatible changes, assuming they're not too entangled with
the rest. Could you give me some hints? Thank you very much.
Ok, I see. Thank you for the answer.
I've already found a program (yaourt) that wreaks havoc because of
this, I gave its developers a heads up.
The cause of my question is that I want to use your readline devel
branch. First, I thought I would need to use the bash devel branch
too, but then I rea
On 10/10/15 9:36 AM, Carlos Pita wrote:
> Hi Chet,
>
> consider the following program:
>
> yyy() {
> continue
> }
>
> xxx() {
> while true; do
> echo x
> yyy
> echo y
> break
> done
> }
>
> xxx
>
> In the bash devel branch it will ignore the continue and echo
>
> x
> y