# HG changeset patch # User Andrew Innes # Date 929563082 0 # Node ID 07a04c532706053efc52871fa0a613d1368a6b83 # Parent 5f64e921ac710d671b0b1c260d953c912a0e5f3e (w32_to_x_weight): Return "demibold" instead of "semibold". diff -r 5f64e921ac71 -r 07a04c532706 src/w32fns.c --- a/src/w32fns.c Wed Jun 16 19:55:59 1999 +0000 +++ b/src/w32fns.c Wed Jun 16 19:58:02 1999 +0000 @@ -5357,7 +5357,7 @@ 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";