On 20/03/07, demerphq <demerphq@gmail.com> wrote: > As a bonus this patch includes two bug fixes which I came across while > working out the utf8 encoding problem. One is for the trie code > charclass logic which was doing the wrong thing under utf8 and the > other was in some debugging output code that was using the wrong utf8 > flag. Thanks, applied as #30647, although I removed an assignment to cast, which might be illegal for some setups: (U8*)exp=Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len); replaced by exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);Thread Previous | Thread Next