diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-07-19 20:19:55 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-07-19 20:19:55 +0000 |
commit | c7f735bd34d6c8b8d5302123959b0b1858e9dd9e (patch) | |
tree | aece22ee514499737dca2739c4e1b74acb2d234a /pango/pangowin32-fontmap.c | |
parent | db5e31a4949f00231978cdd721d5014c585cccf4 (diff) | |
download | pango-c7f735bd34d6c8b8d5302123959b0b1858e9dd9e.tar.gz |
Use 0xFFFE to produce the default glyph. (create_bitmap_dibsection): Zero
2000-07-20 Tor Lillqvist <tml@iki.fi>
* pango/pangowin32.c (subfont_has_glyph): Use 0xFFFE to produce
the default glyph.
(create_bitmap_dibsection): Zero out the bitmap.
* pango/pangowin32-fontmap.c (pango_win32_guess_subranges): Set
some additional Unicode subranges for fonts that claim covering
the Vietnamese codepage.
Diffstat (limited to 'pango/pangowin32-fontmap.c')
-rw-r--r-- | pango/pangowin32-fontmap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pango/pangowin32-fontmap.c b/pango/pangowin32-fontmap.c index a0557305..86565d26 100644 --- a/pango/pangowin32-fontmap.c +++ b/pango/pangowin32-fontmap.c @@ -591,6 +591,11 @@ pango_win32_guess_subranges (UINT charset, { /* ??? */ set_bit (BASIC_LATIN); + set_bit (LATIN_1_SUPPLEMENT); + set_bit (CURRENCY_SYMBOLS); + set_bit (LATIN_EXTENDED_A); + set_bit (LATIN_EXTENDED_B); + set_bit (LATIN_EXTENDED_ADDITIONAL); retval = TRUE; } if (check_cp (THAI)) |