Mercurial > emacs
changeset 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 | 5f64e921ac71 |
children | 031247d14ba1 |
files | src/w32fns.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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";