From 7be4eb69452a58616b31227e8dc26335d35a7e64 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 30 Mar 2020 20:26:29 +0100 Subject: [PATCH] Actually generate the 'ss14' substitutions Without then, the feature doesn't work, and more surprisingly FontForge puts the description of the feature into string ID 0, which is meant to be the copyright notice. --- bedstead.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bedstead.c b/bedstead.c index d93c0b7..b62c628 100644 --- a/bedstead.c +++ b/bedstead.c @@ -2150,6 +2150,8 @@ dolookups(struct glyph const *g) printf("Substitution2: \"ss02\" %s\n", (*gp)->name); if (strcmp((*gp)->name + plen, "saa5054") == 0) printf("Substitution2: \"ss04\" %s\n", (*gp)->name); + if (strcmp((*gp)->name + plen, "sep4") == 0) + printf("Substitution2: \"ss14\" %s\n", (*gp)->name); if (strcmp((*gp)->name + plen, "sep6") == 0) printf("Substitution2: \"ss16\" %s\n", (*gp)->name); if (strcmp((*gp)->name + plen, "sc") == 0) -- 2.30.2