From fc100d7c4c2202f70b9550f6c00ceb0a40ba7c09 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 7 Jan 2007 00:20:25 +0000 Subject: Our standard mapping for the first font should start at 0x20, not 0x21. [originally from svn r7067] --- 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); -- cgit v1.1