diff options
| author | Andrew Innes | 1999-06-16 19:58:02 +0000 |
|---|---|---|
| committer | Andrew Innes | 1999-06-16 19:58:02 +0000 |
| commit | 03f8fb34a12ab5367de7bdcf57937966f8cda865 (patch) | |
| tree | 59d460fd9250eff0d062fcfd55a2683cdeae3ca1 /src | |
| parent | 409406120289c91e97fef76d197e6ad495be4593 (diff) | |
| download | emacs-03f8fb34a12ab5367de7bdcf57937966f8cda865.tar.gz emacs-03f8fb34a12ab5367de7bdcf57937966f8cda865.zip | |
(w32_to_x_weight): Return "demibold" instead of "semibold".
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32fns.c | 2 |
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"; |