(STRDUP_LOWER): Don't ignore the tailing spaces.
authorhanda <handa>
Fri, 26 Jan 2007 05:23:53 +0000 (05:23 +0000)
committerhanda <handa>
Fri, 26 Jan 2007 05:23:53 +0000 (05:23 +0000)
src/font-ft.c

index e21bed9..a1b24a6 100644 (file)
@@ -137,7 +137,6 @@ static int all_fonts_scaned;
       (s1) = alloca (len), (size) = len;                       \
     for (p1 = (s1), p2 = (s2); *p2; p1++, p2++)                        \
       *p1 = (*p2 >= 'A' && *p2 <= 'Z' ? *p2 + 'a' - 'A' : *p2);        \
-    while (p1 > (s1) && p1[-1] == ' ') p1--;                   \
     *p1 = '\0';                                                        \
   } while (0)