i think my code clearly noted it's provinçial nature. ☺
in addition, one would need to change the string from
"`^#*[]=|\\?${}()'<>&;" (char*)
to
L"`^#*[]=|\\?${}()'<>&;" (Rune*)
i was trying to avoid that. i think it would make p9p harder.
(i dont trust gcc with L"".)
- erik
On Fri Jul 28 10:11:26 CDT 2006, [EMAIL PROTECTED] wrote:
> > if(r < 0x80 && strchr("`^#*[]=|\\?${}()'<>&;", r))
> > return 1;
>
> Wouldn't this be clearer as
>
> if(utfrune("`^#*[]=|\\?${}()'<>&;", r))
> return 1;
>
> That's essentially what the r<0x80 (Runesync) does, isn't it?
>
> Micah