From: Behdad Esfahbod Date: Mon, 7 Sep 2009 02:10:22 +0000 (-0400) Subject: Use default config in FcFileScan() and FcDirScan() X-Git-Tag: 2.7.3~2 X-Git-Url: https://git.wh0rd.org/?p=fontconfig.git;a=commitdiff_plain;h=5e544b32d8dc98737c7a268a6a5f877207284e9a Use default config in FcFileScan() and FcDirScan() Before a NULL config was passed down adn essentially FcFileScan was equivalent to FcFreeTypeQuery. Now fc-scan tool correctly applies the configuration to the scanned patterns. --- diff --git a/src/fcdir.c b/src/fcdir.c index b43c3c6..f927c0b 100644 --- a/src/fcdir.c +++ b/src/fcdir.c @@ -117,7 +117,7 @@ FcFileScan (FcFontSet *set, const FcChar8 *file, FcBool force) { - return FcFileScanConfig (set, dirs, blanks, file, NULL); + return FcFileScanConfig (set, dirs, blanks, file, FcConfigGetCurrent ()); } /* @@ -225,7 +225,7 @@ FcDirScan (FcFontSet *set, if (cache || !force) return FcFalse; - return FcDirScanConfig (set, dirs, blanks, dir, force, NULL); + return FcDirScanConfig (set, dirs, blanks, dir, force, FcConfigGetCurrent ()); } /*