diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ftfont.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ftfont.c b/src/ftfont.c index 46455bc3204..37e4f2563b4 100644 --- a/src/ftfont.c +++ b/src/ftfont.c | |||
| @@ -87,9 +87,12 @@ ftfont_build_basic_charsets () | |||
| 87 | for (c = ' '; c < 127; c++) | 87 | for (c = ' '; c < 127; c++) |
| 88 | if (! FcCharSetAddChar (cs_iso8859_1, c)) | 88 | if (! FcCharSetAddChar (cs_iso8859_1, c)) |
| 89 | return -1; | 89 | return -1; |
| 90 | #if 0 | ||
| 91 | /* This part is currently disabled. Should be fixed later. */ | ||
| 90 | for (c = 192; c < 256; c++) | 92 | for (c = 192; c < 256; c++) |
| 91 | if (! FcCharSetAddChar (cs_iso8859_1, c)) | 93 | if (! FcCharSetAddChar (cs_iso8859_1, c)) |
| 92 | return -1; | 94 | return -1; |
| 95 | #endif | ||
| 93 | return 0; | 96 | return 0; |
| 94 | } | 97 | } |
| 95 | 98 | ||