Don't use blanks for fc-query

fc-query is supposed to be config-independent.
This commit is contained in:
Behdad Esfahbod 2013-01-03 20:31:22 -06:00
parent b6b678e71e
commit 102a4344dd
1 changed files with 1 additions and 3 deletions

View File

@ -142,8 +142,6 @@ main (int argc, char **argv)
return 1;
}
blanks = FcConfigGetBlanks (NULL);
for (; i < argc; i++)
{
int index;
@ -154,7 +152,7 @@ main (int argc, char **argv)
do {
FcPattern *pat;
pat = FcFreeTypeQuery ((FcChar8 *) argv[i], index, blanks, &count);
pat = FcFreeTypeQuery ((FcChar8 *) argv[i], index, NULL, &count);
if (pat)
{
if (format)