Allow space at the end of feature string with values, eg 'dlig=1 '

This commit is contained in:
Behdad Esfahbod 2014-07-25 12:04:27 -04:00
parent f31f7d2259
commit 3f64618474
1 changed files with 3 additions and 1 deletions

View File

@ -34,12 +34,13 @@
#include "hb-font-private.hh"
static void
static bool
parse_space (const char **pp, const char *end)
{
char c;
while (*pp < end && (c = **pp, ISSPACE (c)))
(*pp)++;
return true;
}
static bool
@ -174,6 +175,7 @@ parse_one_feature (const char **pp, const char *end, hb_feature_t *feature)
parse_feature_tag (pp, end, feature) &&
parse_feature_indices (pp, end, feature) &&
parse_feature_value_postfix (pp, end, feature) &&
parse_space (pp, end) &&
*pp == end;
}