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
1df6a31704
commit
97094311aa
|
@ -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