diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-11-17 18:19:18 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-11-17 18:19:18 +0200 |
commit | b31f1987eb27a69d7c0eab9cce6eab8ba0857ec1 (patch) | |
tree | 53b98b537628ffe78f26b836b94585c9f63b04bb /src/w32font.c | |
parent | 7c6335de5e0ac4176911a39bad5344028f39b8ff (diff) | |
download | emacs-b31f1987eb27a69d7c0eab9cce6eab8ba0857ec1.tar.gz emacs-b31f1987eb27a69d7c0eab9cce6eab8ba0857ec1.tar.bz2 emacs-b31f1987eb27a69d7c0eab9cce6eab8ba0857ec1.zip |
Support more font weight values on MS-Windows
* src/w32font.c (w32_to_fc_weight): Support a few more weight
values, for compatibility with the GTK font selection widget
(see gtkutil.c:XG_WEIGHT_TO_SYMBOL). (Bug#24226)
Diffstat (limited to 'src/w32font.c')
-rw-r--r-- | src/w32font.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/w32font.c b/src/w32font.c index 9a334717c12..60020eab4a0 100644 --- a/src/w32font.c +++ b/src/w32font.c @@ -2000,11 +2000,14 @@ w32_encode_weight (int n) static Lisp_Object w32_to_fc_weight (int n) { - if (n >= FW_EXTRABOLD) return intern ("black"); + if (n >= FW_HEAVY) return intern ("black"); + if (n >= FW_EXTRABOLD) return Qextra_bold; if (n >= FW_BOLD) return Qbold; if (n >= FW_SEMIBOLD) return intern ("demibold"); if (n >= FW_NORMAL) return intern ("medium"); - return Qlight; + if (n >= FW_LIGHT) return Qlight; + if (n >= FW_EXTRALIGHT) return Qextra_light; + return intern ("thin"); } /* Fill in all the available details of LOGFONT from FONT_SPEC. */ |