From d922a43261b27c0b8fb3b697f28a2c82e9d2dde8 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 11 May 2024 19:45:49 +0100 Subject: [PATCH] Corrected glyph name for U+22C5 DOT OPERATOR AGLFN says it should be "dotmath". It wasn't in the last release, so no backward-compatibility alias. --- bedstead.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bedstead.c b/bedstead.c index 1d4ce7f..7e9e47e 100644 --- a/bedstead.c +++ b/bedstead.c @@ -1443,7 +1443,7 @@ static struct glyph { {{016,021,021,021,021,021,021,021,021}, U(22C2) }, /* n-ary intersection */ {{021,021,021,021,021,021,021,021,016}, U(22C3) }, /* n-ary union */ {{000,004,012,021,012,004,000,000,000}, U(22C4) }, /* diamond operator */ - {{000,000,000,004,000,000,000,000,000}, U(22C5) }, /* dot operator */ + {{000,000,000,004,000,000,000,000,000}, 0x22c5, "dotmath" }, {{000,000,033,025,033,000,000,000,000}, U(22C8) }, /* bowtie */ {{000,020,010,004,012,021,000,000,000}, U(22CB) }, /* left semidirect prod */ {{000,001,002,004,012,021,000,000,000}, U(22CC) }, /* right semidirect prod */ -- 2.30.2