From 354a4bdc61ae00ec75dc65f0d9eb8978e7ee1020 Mon Sep 17 00:00:00 2001 From: handa Date: Thu, 6 Mar 2008 12:58:10 +0000 Subject: [PATCH] (ft_drive_otf): Don't ignore the otf-spec to apply all features. --- src/font-ft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font-ft.c b/src/font-ft.c index 73e5313..d0904d8 100644 --- a/src/font-ft.c +++ b/src/font-ft.c @@ -2285,7 +2285,7 @@ ft_drive_otf (MFLTFont *font, MFLTOtfSpec *spec, { char *p; - if (spec->features[i] && spec->features[i][0] != 0xFFFFFFFF) + if (spec->features[i]) { for (j = 0; spec->features[i][j]; j++); if (i == 0) -- 1.7.10.4