From: Andrew Innes Date: Wed, 16 Jun 1999 19:58:02 +0000 (+0000) Subject: (w32_to_x_weight): Return "demibold" instead of "semibold". X-Git-Tag: emacs-20.4~93 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03f8fb34a12ab5367de7bdcf57937966f8cda865;p=emacs.git (w32_to_x_weight): Return "demibold" instead of "semibold". --- diff --git a/src/w32fns.c b/src/w32fns.c index 201fbb3fc76..c98d04f80fc 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -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";