From: Gerd Moellmann Date: Thu, 16 Nov 2000 04:40:42 +0000 (+0000) Subject: (weight_table): Add `demi' with the same meaning as X-Git-Tag: emacs-pretest-21.0.90~35 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a288d0d1f23c3fd754edc84cfc2841be09e223ca;p=emacs.git (weight_table): Add `demi' with the same meaning as `demibold'. --- diff --git a/src/ChangeLog b/src/ChangeLog index 836765a1064..d6fd3dfc20d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2000-11-16 Gerd Moellmann + + * xfaces.c (weight_table): Add `demi' with the same meaning as + `demibold'. + 2000-11-16 Kenichi Handa * dispnew.c (null_row): New global static variable. diff --git a/src/xfaces.c b/src/xfaces.c index 732acbd0163..bb674c7a1c9 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -1773,6 +1773,7 @@ static struct table_entry weight_table[] = {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}, {"bold", XLFD_WEIGHT_BOLD, &Qbold}, {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light}, + {"demi", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold}, {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light}, {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},