summaryrefslogtreecommitdiff
path: root/src/w32font.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2022-05-27 15:07:33 +0300
committerEli Zaretskii <eliz@gnu.org>2022-05-27 15:12:09 +0300
commit8399c6a82127f3c6a2e5f781122567d27ae799f8 (patch)
tree31a11ae0f534b83c685afd44831ee314b2149b69 /src/w32font.c
parenta83e75b207c9678394e3e4c29a2dd592d06bbbe6 (diff)
downloademacs-8399c6a82127f3c6a2e5f781122567d27ae799f8.tar.gz
emacs-8399c6a82127f3c6a2e5f781122567d27ae799f8.tar.bz2
emacs-8399c6a82127f3c6a2e5f781122567d27ae799f8.zip
Improve font selection on MS-Windows
The Arial Unicode MS font claims in its USB (Unicode Subset Bitfields) values support for several scripts for which it doesn't actually have glyphs. This sometimes caused Emacs to decide to use Arial Unicode MS for some script, only to discover later that there are no glyphs for that script's characters. This change fixes the USB values according to actual font coverage, as determined by BabelMap. * src/w32font.c (add_font_entity_to_list): Fix USB values of Arial Unicode MS font according to its actual coverage of scripts.
Diffstat (limited to 'src/w32font.c')
-rw-r--r--src/w32font.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/w32font.c b/src/w32font.c
index 4e60b818ced..611a0c89658 100644
--- a/src/w32font.c
+++ b/src/w32font.c
@@ -1540,6 +1540,19 @@ add_font_entity_to_list (ENUMLOGFONTEX *logical_font,
|| physical_font->ntmFontSig.fsUsb[1]
|| physical_font->ntmFontSig.fsUsb[0] & 0x3fffffff;
+ /* Kludgey fix for Arial Unicode MS font that claims support for
+ scripts it doesn't actually cover. */
+ if (strncmp (logical_font->elfLogFont.lfFaceName,
+ "Arial Unicode MS", 16) == 0)
+ {
+ /* Reset bits 4 (Phonetic), 12 (Vai), 14 (Nko), 27 (Balinese). */
+ physical_font->ntmFontSig.fsUsb[0] &= 0xf7ffafef;
+ /* Reset bits 53 (Phags-pa) and 58 (Phoenician). */
+ physical_font->ntmFontSig.fsUsb[1] &= 0xfbdfffff;
+ /* Set bit 70 (Tibetan). */
+ physical_font->ntmFontSig.fsUsb[2] |= 0x00000040;
+ }
+
/* Skip non matching fonts. */
/* For uniscribe backend, consider only truetype or opentype fonts