From 97b8c443f62a7b1ccc3d29ea3ec3c62f82adc639 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 7 Sep 2025 18:04:48 +0100 Subject: [PATCH] Make all the capital Dcroat and African D into aliases of Eth This saves a few bytes and avoids some repetition. --- bedstead.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bedstead.c b/bedstead.c index 620c8dd..32dd1f8 100644 --- a/bedstead.c +++ b/bedstead.c @@ -727,9 +727,9 @@ static struct glyph { ALIAS("dcaron.sc", "Dcaron"), ALIAS("dcaron.sc.serif", "Dcaron.serif"), ALIAS("dcaron.sc.narrow", "Dcaron.narrow"), - {"\16\11\11\35\11\11\16\00\00", 0x0110, "Dcroat" }, + UALIAS(0x0110, "Dcroat", "Eth"), ALIAS("Dcroat.serif", "Eth.serif"), - {"\00\00\16\11\35\11\16\00\00", 0xf192, "Dcroat.c2sc" }, + UALIAS(0xf192, "Dcroat.c2sc", "Eth.c2sc"), ALIAS("Dcroat.c2sc.serif", "Eth.c2sc.serif"), {"\02\07\02\16\22\22\16\00\00", 0x0111, "dcroat" }, ALIAS("dcroat.sc", "Dcroat.c2sc"), @@ -916,10 +916,10 @@ static struct glyph { {"\16\21\01\01\01\21\16\00\00", U(0186) }, /* open O */ {"\00\00\16\21\01\21\16\00\00", -1, "uni0186.c2sc" }, {"\03\02\17\20\20\20\17\00\00", U(0188) }, /* Hooktop C */ - {"\16\11\11\35\11\11\16\00\00", U(0189) }, /* African D */ - {"\36\11\11\35\11\11\36\00\00", -1, "uni0189.serif" }, - {"\00\00\16\11\35\11\16\00\00", -1, "uni0189.c2sc" }, - {"\00\00\36\11\35\11\36\00\00", -1, "uni0189.c2sc.serif" }, + UALIAS(0x0189, "uni0189", "Eth"), /* African D */ + ALIAS("uni0189.serif", "Eth.serif"), + ALIAS("uni0189.c2sc", "Eth.c2sc"), + ALIAS("uni0189.c2sc.serif", "Eth.c2sc.serif"), {"\37\01\01\17\01\01\37\00\00", U(018E) }, /* reversed E */ ALIAS("uni018E.c2sc", "uni2C7B"), {"\16\21\01\37\21\21\16\00\00", U(018F) }, /* Schwa */ -- 2.30.2