From: ben Date: Sun, 7 Jan 2007 00:20:25 +0000 (+0000) Subject: Our standard mapping for the first font should start at 0x20, not 0x21. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/halibut/commitdiff_plain/c923eb7f496826aa29015bbef4e855ec42a948c7?ds=sidebyside Our standard mapping for the first font should start at 0x20, not 0x21. git-svn-id: svn://svn.tartarus.org/sgt/halibut@7067 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/bk_paper.c b/bk_paper.c index c17dfc8..ae5a246 100644 --- a/bk_paper.c +++ b/bk_paper.c @@ -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);