-2003-10-27 Keith Packard <set EMAIL_ADDRESS environment variable>
+2003-11-10 Roozbeh Pournader <roozbeh@sharif.edu>
+
+ * src/fcxml.c:
+ Fixed a bug "FcStrtod" in handling some cases with two-byte decimal
+ separators.
+
+2003-10-27 Keith Packard <keith@keithp.com>
* configure.in:
* fontconfig/fontconfig.h:
strcpy (buf + (dot - s) + dlen, dot + 1);
buf_end = 0;
v = strtod (buf, &buf_end);
- if (buf_end)
- buf_end = s + (buf_end - buf) + 1 - dlen;
+ if (buf_end) {
+ buf_end = s + (buf_end - buf);
+ if (buf_end > dot)
+ buf_end -= dlen - 1;
+ }
if (end)
*end = buf_end;
}