1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-09 15:50:21 +00:00

(w32_to_x_weight): Return "demibold" instead of "semibold".

This commit is contained in:
Andrew Innes 1999-06-16 19:58:02 +00:00
parent 4094061202
commit 03f8fb34a1

View File

@ -5357,7 +5357,7 @@ w32_to_x_weight (fnweight)
if (fnweight >= FW_HEAVY) return "heavy";
if (fnweight >= FW_EXTRABOLD) return "extrabold";
if (fnweight >= FW_BOLD) return "bold";
if (fnweight >= FW_SEMIBOLD) return "semibold";
if (fnweight >= FW_SEMIBOLD) return "demibold";
if (fnweight >= FW_MEDIUM) return "medium";
if (fnweight >= FW_NORMAL) return "normal";
if (fnweight >= FW_LIGHT) return "light";