summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2007-01-07 00:20:25 +0000
committerBen Harris <bjh21@bjh21.me.uk>2007-01-07 00:20:25 +0000
commitfc100d7c4c2202f70b9550f6c00ceb0a40ba7c09 (patch)
tree67148c1551dfcc61f99c445163c616ebcad51bd0
parent669b28cebeb55e7a6a5c3edce969ba478672efcc (diff)
downloadhalibut-fc100d7c4c2202f70b9550f6c00ceb0a40ba7c09.zip
halibut-fc100d7c4c2202f70b9550f6c00ceb0a40ba7c09.tar.gz
halibut-fc100d7c4c2202f70b9550f6c00ceb0a40ba7c09.tar.bz2
halibut-fc100d7c4c2202f70b9550f6c00ceb0a40ba7c09.tar.xz
Our standard mapping for the first font should start at 0x20, not 0x21.
[originally from svn r7067]
-rw-r--r--bk_paper.c2
1 files changed, 1 insertions, 1 deletions
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);