comparison src/w32fns.c @ 24856:07a04c532706

(w32_to_x_weight): Return "demibold" instead of "semibold".
author Andrew Innes <andrewi@gnu.org>
date Wed, 16 Jun 1999 19:58:02 +0000
parents e0eaca5025bc
children ee9bfbc340ba
comparison
equal deleted inserted replaced
24855:5f64e921ac71 24856:07a04c532706
5355 int fnweight; 5355 int fnweight;
5356 { 5356 {
5357 if (fnweight >= FW_HEAVY) return "heavy"; 5357 if (fnweight >= FW_HEAVY) return "heavy";
5358 if (fnweight >= FW_EXTRABOLD) return "extrabold"; 5358 if (fnweight >= FW_EXTRABOLD) return "extrabold";
5359 if (fnweight >= FW_BOLD) return "bold"; 5359 if (fnweight >= FW_BOLD) return "bold";
5360 if (fnweight >= FW_SEMIBOLD) return "semibold"; 5360 if (fnweight >= FW_SEMIBOLD) return "demibold";
5361 if (fnweight >= FW_MEDIUM) return "medium"; 5361 if (fnweight >= FW_MEDIUM) return "medium";
5362 if (fnweight >= FW_NORMAL) return "normal"; 5362 if (fnweight >= FW_NORMAL) return "normal";
5363 if (fnweight >= FW_LIGHT) return "light"; 5363 if (fnweight >= FW_LIGHT) return "light";
5364 if (fnweight >= FW_EXTRALIGHT) return "extralight"; 5364 if (fnweight >= FW_EXTRALIGHT) return "extralight";
5365 if (fnweight >= FW_THIN) return "thin"; 5365 if (fnweight >= FW_THIN) return "thin";