On Tue Jun  8 14:14:17 EDT 2010, yard-...@telus.net wrote:
> P9P sed gives me the error "Label too long" on:
> 
> % echo foo | sed 's/./&/;ta;b;:a;s//*/'
> 
> but not on:
> 
> % echo foo | sed 's/./&/
> ta
> b
> :a
> s//*/'
> 
> As though the label commands require immediate newlines.
> 
> Anyone else experience this?

without having access to a unix machine right now, i'm guessing that
the code at jtcommon should replace
        if(*cp == '\0')
with
        if(*cp == '\0' || *cp == ';')

at lines 428.  similar change at line 328.

- erik

Reply via email to