dont complain about missing optional included font config files

This commit is contained in:
Keith Packard 2002-02-20 00:32:30 +00:00
parent 6e9fc5ded4
commit 24c90386bb
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $XFree86: xc/lib/fontconfig/src/fcxml.c,v 1.2 2002/02/15 06:01:28 keithp Exp $ * $XFree86: xc/lib/fontconfig/src/fcxml.c,v 1.3 2002/02/18 22:29:28 keithp Exp $
* *
* Copyright © 2002 Keith Packard, member of The XFree86 Project, Inc. * Copyright © 2002 Keith Packard, member of The XFree86 Project, Inc.
* *
@ -1180,7 +1180,7 @@ FcParseInclude (FcConfigParse *parse)
i = FcConfigGetAttribute (parse, "ignore_missing"); i = FcConfigGetAttribute (parse, "ignore_missing");
if (i && FcConfigLexBool ((FcChar8 *) i) == FcTrue) if (i && FcConfigLexBool ((FcChar8 *) i) == FcTrue)
ignore_missing = FcTrue; ignore_missing = FcTrue;
if (!FcConfigParseAndLoad (parse->config, s, ignore_missing)) if (!FcConfigParseAndLoad (parse->config, s, !ignore_missing))
parse->error = FcTrue; parse->error = FcTrue;
free (s); free (s);
} }