On Fri Oct 28 16:21:55 2011, MJGARDNER wrote:
Show quoted text> Actually, it seems to be more specific than that -- it only gets tripped
> up by loop labels in statement modifiers, e.g.:
>
> FOO: while ($some_condition) {
> try_something() or next FOO;
> }
A patch has been applied, and committed as SVN revision 4093.
This patch handles 'next', 'last', and 'redo', which only take labels as
arguments. It does not handle 'goto', which takes either a label or an
expression, and which will be a real mess to disambiguate.