Re: Continue behavior in devel branch

2015-10-12 Thread Carlos Pita
> 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.

Re: Continue behavior in devel branch

2015-10-12 Thread Carlos Pita
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

Re: Continue behavior in devel branch

2015-10-10 Thread Chet Ramey
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

Continue behavior in devel branch

2015-10-10 Thread Carlos Pita
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 In the stable branch it will echo x x x x . . . forever, because the continue works