From 1d2157df171d99504d8478471839fe274236d965 Mon Sep 17 00:00:00 2001 From: handa Date: Mon, 13 Sep 2004 01:54:51 +0000 Subject: [PATCH] (common_weight): Change the order of "regular". --- src/font.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/font.c b/src/font.c index 2bda328..45d3c3e 100644 --- a/src/font.c +++ b/src/font.c @@ -373,9 +373,9 @@ static char *common_weight[] = "light", "demilight", "book", + "regular", "normal", "medium", - "regular", "demibold", "bold", "extrabold", @@ -844,8 +844,8 @@ mfont__init () if (sym == Mnil) return -1; - if (msymbol_put(sym, mfont__property_table[i].property, - (void *) (j + 1)) < 0) + if (msymbol_put (sym, mfont__property_table[i].property, + (void *) (j + 1)) < 0) return -1; MLIST_APPEND1 (&mfont__property_table[i], names, sym, MERROR_FONT); } -- 1.7.10.4