[HarfBuzz] hb-view
Behdad Esfahbod
behdad at behdad.org
Thu Apr 21 13:54:44 PDT 2011
On 04/21/11 16:44, Adam Twardoch (List) wrote:
> Since I'm not a patch master, here's a verbal notice:
>
> hb-view.c line 233 is currently:
>
> #define ISALPHA(c) (('a' <= (c) && (c) <= 'z') || ('A' <= (c) && (c) <=
> 'Z'))
>
> and should be:
>
> #define ISALPHA(c) (('a' <= (c) && (c) <= 'z') || ('A' <= (c) && (c) <=
> 'Z') || ('0' <= (c) && (c) <= '9'))
>
> Otherwise, the feature tags such as "ss01" are not recognized.
Oh, good point. I'll fix that.
Other comments on hb-view?
behdad
> A.
>
>
More information about the HarfBuzz
mailing list