summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2002-02-20 00:32:30 +0000
committerKeith Packard <keithp@keithp.com>2002-02-20 00:32:30 +0000
commit24c90386bbdda9800d5a35c4dbff08682186907f (patch)
treefe92e56b80621bb8aad2c8c01b4d9df9b6afc31f
parent6e9fc5ded4a36fb3e9e31b96f837b2e54f1cd77c (diff)
dont complain about missing optional included font config files
-rw-r--r--src/fcxml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fcxml.c b/src/fcxml.c
index f31a93f..64a5269 100644
--- a/src/fcxml.c
+++ b/src/fcxml.c
@@ -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.
*
@@ -1180,7 +1180,7 @@ FcParseInclude (FcConfigParse *parse)
i = FcConfigGetAttribute (parse, "ignore_missing");
if (i && FcConfigLexBool ((FcChar8 *) i) == FcTrue)
ignore_missing = FcTrue;
- if (!FcConfigParseAndLoad (parse->config, s, ignore_missing))
+ if (!FcConfigParseAndLoad (parse->config, s, !ignore_missing))
parse->error = FcTrue;
free (s);
}