changeset 90524:b7bcc590bab5

(ftfont_list): Fix typo. (ftfont_build_basic_charsets): Don't include letters with diactrics.
author Kenichi Handa <handa@m17n.org>
date Fri, 07 Jul 2006 11:48:40 +0000
parents 5cb3d86fe6f0
children 30d1fe62c2fa
files src/ftfont.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ftfont.c	Fri Jul 07 01:07:53 2006 +0000
+++ b/src/ftfont.c	Fri Jul 07 11:48:40 2006 +0000
@@ -87,9 +87,12 @@
   for (c = ' '; c < 127; c++)
     if (! FcCharSetAddChar (cs_iso8859_1, c))
       return -1;
+#if 0
+  /* This part is currently disabled.  Should be fixed later.  */
   for (c = 192; c < 256; c++)
     if (! FcCharSetAddChar (cs_iso8859_1, c))
       return -1;
+#endif
   return 0;
 }