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.
> 
> 
_______________________________________________
HarfBuzz mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/harfbuzz

Reply via email to