]> git.eshelyaron.com Git - emacs.git/commitdiff
(w32_to_x_weight): Return "demibold" instead of "semibold".
authorAndrew Innes <andrewi@gnu.org>
Wed, 16 Jun 1999 19:58:02 +0000 (19:58 +0000)
committerAndrew Innes <andrewi@gnu.org>
Wed, 16 Jun 1999 19:58:02 +0000 (19:58 +0000)
src/w32fns.c

index 201fbb3fc76e793cfa876fed33f7d7e739eaf269..c98d04f80fca697023d5f1d599c684b1be952799 100644 (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";