Our standard mapping for the first font should start at 0x20, not 0x21.
authorben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sun, 7 Jan 2007 00:20:25 +0000 (00:20 +0000)
committerben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sun, 7 Jan 2007 00:20:25 +0000 (00:20 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/halibut@7067 cda61777-01e9-0310-a592-d414129be87e

bk_paper.c

index c17dfc8..ae5a246 100644 (file)
@@ -1490,7 +1490,7 @@ static font_data *make_std_font(font_list *fontlist, char const *name)
     fe->free_pos = 0xA1;              /* only the top half is free */
     f->latest_subfont = fe;
 
-    for (i = 0x21; i <= 0x7E; i++) {
+    for (i = 0x20; i <= 0x7E; i++) {
        glyph g = utoglyph(fi, i);
        if (g != NOGLYPH)
            encode_glyph_at(g, i, fe, i);