Re: winch trap delayed until keypress

2014-05-20 Thread Chet Ramey
On 5/20/14, 8:28 AM, Egmont Koblinger wrote: > Hi, > > Execute this in an interactive bash and then resize the window: > trap 'stty size' winch > > In bash-4.2, the trap was executed immediately upon resize. In > bash-4.3, it is delayed until the next keypress. http://lists.gnu.org/archive/html

winch trap delayed until keypress

2014-05-20 Thread Egmont Koblinger
Hi, Execute this in an interactive bash and then resize the window: trap 'stty size' winch In bash-4.2, the trap was executed immediately upon resize. In bash-4.3, it is delayed until the next keypress. Is this an intentional, expected change? There seems to be no relevant entry in NEWS. I us