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:
Tom Kacvinsky 2001-02-07 03:45:49 +00:00
parent 0f9eab88c3
commit b3e3a77c2d
1 changed files with 1 additions and 1 deletions

View File

@ -765,7 +765,7 @@
static
int is_alpha( FT_Byte c )
{
return ( isalnum( c ) || c == '.' || c == '_' );
return ( isalnum( c ) || c == '.' || c == '_' || c == '-' );
}