aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c
index d329483ff4c..1668a27089b 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -747,7 +747,7 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp)
747 /* We assume that MSBs are appropriately 747 /* We assume that MSBs are appropriately
748 set/reset by CCL program. */ 748 set/reset by CCL program. */
749 if (font->max_byte1 == 0) /* 1-byte font */ 749 if (font->max_byte1 == 0) /* 1-byte font */
750 cp->byte2 = ccl->reg[1]; 750 cp->byte1 = 0, cp->byte2 = ccl->reg[1];
751 else 751 else
752 cp->byte1 = ccl->reg[1], cp->byte2 = ccl->reg[2]; 752 cp->byte1 = ccl->reg[1], cp->byte2 = ccl->reg[2];
753 } 753 }
@@ -760,7 +760,7 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp)
760 /* We assume that MSBs are appropriately 760 /* We assume that MSBs are appropriately
761 set/reset by CCL program. */ 761 set/reset by CCL program. */
762 if (font->max_byte1 == 0) /* 1-byte font */ 762 if (font->max_byte1 == 0) /* 1-byte font */
763 cp->byte2 = ccl->reg[1]; 763 cp->byte1 = 0, cp->byte2 = ccl->reg[1];
764 else 764 else
765 cp->byte1 = ccl->reg[1], cp->byte2 = ccl->reg[2]; 765 cp->byte1 = ccl->reg[1], cp->byte2 = ccl->reg[2];
766 } 766 }