From: Ben Harris Date: Fri, 15 Nov 2024 20:45:01 +0000 (+0000) Subject: Put version number in glyph complement PDF X-Git-Tag: bedstead-3.246~34 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=3c333a8790459fb4c8109655d542fb46280de9ed;p=bedstead.git Put version number in glyph complement PDF Now that we've got the version number in a constant, this is convenient. --- diff --git a/bedstead.c b/bedstead.c index 72b2301..3d3cc9c 100644 --- a/bedstead.c +++ b/bedstead.c @@ -4230,8 +4230,8 @@ glyph_complement() sorted[i] = &glyphs[i]; qsort(sorted, nglyphs, sizeof(sorted[0]), &byunicode); printf("%%!PS-Adobe\n"); - printf("%%%%Creator: bedstead\n"); - printf("%%%%Title: %s Glyph Complement\n", FAMILY_NAME); + printf("%%%%Creator: bedstead %s\n", VERSION); + printf("%%%%Title: %s %s Glyph Complement\n", FAMILY_NAME, VERSION); printf("/xfont /%s findfont 20 scalefont def\n", FAMILY_NAME); printf("/nfont /%s findfont 10 scalefont def\n", FAMILY_NAME); printf("/lfont /%s findfont 4 scalefont def\n", FAMILY_NAME);