diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2006-09-10 23:47:00 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2006-09-10 23:47:00 -0400 |
commit | 24a47fee30cfc3e2da82571f9c13c896a601a8df (patch) | |
tree | 34e6d98955850ffba8d43bc0b9bf7f8a1143f045 /src/UCAux.c | |
parent | c6cec39ad0f9474e910e321e1b4d95054f5529a1 (diff) | |
download | lynx-snapshots-24a47fee30cfc3e2da82571f9c13c896a601a8df.tar.gz |
snapshot of project "lynx", label v2-8-6pre_3
Diffstat (limited to 'src/UCAux.c')
-rw-r--r-- | src/UCAux.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/UCAux.c b/src/UCAux.c index f7114fd4..49b8692e 100644 --- a/src/UCAux.c +++ b/src/UCAux.c @@ -376,7 +376,7 @@ void UCSetBoxChars(int cset, char *map = tigetstr("acsc"); if (map != 0) { - CTRACE((tfp, "check terminal line-drawing map\n")); + CTRACE((tfp, "build terminal line-drawing map\n")); while (map[0] != 0 && map[1] != 0) { for (n = 0; n < TABLESIZE(table); ++n) { if (table[n].mapping == map[0]) { @@ -397,12 +397,14 @@ void UCSetBoxChars(int cset, if (cset == last_cset) { fix_lines = last_result; } else { + CTRACE((tfp, "check terminal line-drawing map\n")); for (n = 0; n < TABLESIZE(table); ++n) { int test = UCTransUniChar(table[n].internal, cset); if (test != table[n].external) { - CTRACE((tfp, "line-drawing map %c mismatch\n", - table[n].mapping)); + CTRACE((tfp, "line-drawing map %c mismatch (have %#x, want %#x)\n", + table[n].mapping, + test, table[n].external)); fix_lines = TRUE; break; } |