diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2007-01-07 00:20:25 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2007-01-07 00:20:25 +0000 |
| commit | fc100d7c4c2202f70b9550f6c00ceb0a40ba7c09 (patch) | |
| tree | 67148c1551dfcc61f99c445163c616ebcad51bd0 | |
| parent | 669b28cebeb55e7a6a5c3edce969ba478672efcc (diff) | |
| download | halibut-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |