From: Ben Harris Date: Wed, 4 Apr 2018 21:16:01 +0000 (+0100) Subject: Move .notdef to the end of the list with the other unencoded glyphs. X-Git-Tag: bedstead-002.000~19 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=8c6f94dd3cd2d7dca185fc4274a0046cbec2270f;p=bedstead-debian.git Move .notdef to the end of the list with the other unencoded glyphs. --- diff --git a/bedstead.c b/bedstead.c index 2584520..f9f5b19 100644 --- a/bedstead.c +++ b/bedstead.c @@ -1449,7 +1449,6 @@ static struct glyph { /* Specials */ {{016,021,025,011,016,012,016,000,000}, 0xfffd }, /* replacement */ - {{037,021,021,021,021,021,037,000,000}, -1, ".notdef" }, /* Shavian */ {{030,004,004,004,004,004,004,000,000}, 0x10450 }, /* peep */ @@ -1535,6 +1534,9 @@ static struct glyph { {{000,000,021,012,004,004,004,000,000}, -1, "y.sc" }, {{000,000,037,001,016,020,037,000,000}, -1, "z.sc" }, {{000,000,016,021,022,021,026,000,000}, -1, "germandbls.sc" }, + + /* and finally */ + {{037,021,021,021,021,021,037,000,000}, -1, ".notdef" }, }; static int const nglyphs = sizeof(glyphs) / sizeof(glyphs[0]);