[Fontconfig] fontconfig: Branch 'master'
Akira TAGOH
tagoh at kemper.freedesktop.org
Wed Mar 14 09:33:34 UTC 2018
src/fcname.c | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 4699406a68321179b14fae7412f828e2f37a7033
Author: Akira TAGOH <akira at tagoh.org>
Date: Wed Mar 14 18:31:30 2018 +0900
Add the value of the constant name to the implicit object in the pattern
For objects which has been changed the object type to FcTypeRange.
https://bugs.freedesktop.org/show_bug.cgi?id=105415
diff --git a/src/fcname.c b/src/fcname.c
index 15fb659..c9320ae 100644
--- a/src/fcname.c
+++ b/src/fcname.c
@@ -490,6 +490,10 @@ FcNameParse (const FcChar8 *name)
if (!FcPatternAddBool (pat, c->object, c->value))
goto bail2;
break;
+ case FcTypeRange:
+ if (!FcPatternAddInteger (pat, c->object, c->value))
+ goto bail2;
+ break;
default:
break;
}
More information about the Fontconfig
mailing list