(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 201fbb3..c98d04f 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";