[Fontconfig] fontconfig: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Thu Jul 3 18:14:00 PDT 2014


 src/fccharset.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 940d27a197bfb0cfd93d3bb7dba33d5e23ac46b0
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Thu Jul 3 21:15:25 2014 -0400

    Minor

diff --git a/src/fccharset.c b/src/fccharset.c
index d1d976a..c7913d1 100644
--- a/src/fccharset.c
+++ b/src/fccharset.c
@@ -822,14 +822,14 @@ FcNameParseRange (FcChar8 **string, FcChar32 *pfirst, FcChar32 *plast)
 	char *t;
 	long first, last;
 
-	while (isspace(*s) || *s == ',')
+	while (isspace(*s))
 	    s++;
 	t = s;
 	errno = 0;
 	first = last = strtol (s, &s, 16);
 	if (errno)
 	    return FcFalse;
-	while (isspace(*s) || *s == ',')
+	while (isspace(*s))
 	    s++;
 	if (*s == '-')
 	{


More information about the Fontconfig mailing list