aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes1999-06-16 19:58:02 +0000
committerAndrew Innes1999-06-16 19:58:02 +0000
commit03f8fb34a12ab5367de7bdcf57937966f8cda865 (patch)
tree59d460fd9250eff0d062fcfd55a2683cdeae3ca1 /src
parent409406120289c91e97fef76d197e6ad495be4593 (diff)
downloademacs-03f8fb34a12ab5367de7bdcf57937966f8cda865.tar.gz
emacs-03f8fb34a12ab5367de7bdcf57937966f8cda865.zip
(w32_to_x_weight): Return "demibold" instead of "semibold".
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c2
1 files changed, 1 insertions, 1 deletions
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)
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";