In function is_alpha, make `-' a legal alphanumeric character. This
is so that font names with `-' are fully parsed, etc...
This commit is contained in:
parent
0f9eab88c3
commit
b3e3a77c2d
|
@ -765,7 +765,7 @@
|
|||
static
|
||||
int is_alpha( FT_Byte c )
|
||||
{
|
||||
return ( isalnum( c ) || c == '.' || c == '_' );
|
||||
return ( isalnum( c ) || c == '.' || c == '_' || c == '-' );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue