summaryrefslogtreecommitdiff
path: root/src/fclist.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2003-03-05 05:52:31 +0000
committerKeith Packard <keithp@keithp.com>2003-03-05 05:52:31 +0000
commit793e946c2f90b5617ec39c64679630b4e2f2d3ad (patch)
tree68a17904ad8954e0c3ee61e22e6caa23376cf628 /src/fclist.c
parent4bd4418ab5e7450e1c1fd3cd136098f1bf37a80c (diff)
downloadfontconfig-793e946c2f90b5617ec39c64679630b4e2f2d3ad.tar.gz
AddFcLangSetContains for font listing, add first-letter table for language
lookups, change RCS tag
Diffstat (limited to 'src/fclist.c')
-rw-r--r--src/fclist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fclist.c b/src/fclist.c
index 39d1729..47a2f04 100644
--- a/src/fclist.c
+++ b/src/fclist.c
@@ -1,7 +1,7 @@
/*
- * $XFree86: xc/lib/fontconfig/src/fclist.c,v 1.11tsi Exp $
+ * $RCSId: xc/lib/fontconfig/src/fclist.c,v 1.11tsi Exp $
*
- * Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc.
+ * Copyright © 2000 Keith Packard
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
@@ -128,7 +128,7 @@ FcListValueListMatchAny (FcValueList *v1orig,
for (v1 = v1orig; v1; v1 = v1->next)
for (v2 = v2orig; v2; v2 = v2->next)
- if (FcConfigCompareValue (v2->value, FcOpContains, v1->value))
+ if (FcConfigCompareValue (v1->value, FcOpContains, v2->value))
return FcTrue;
return FcFalse;
}