From c923eb7f496826aa29015bbef4e855ec42a948c7 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 7 Jan 2007 00:20:25 +0000 Subject: [PATCH] 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 --- bk_paper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0