1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Temporary hack which makes vt100 line drawing work in the prototype

pterm.

[originally from svn r2012]
This commit is contained in:
Simon Tatham 2002-10-10 11:33:46 +00:00
parent 622f9b44f0
commit 77a43c5d7a

View File

@ -109,6 +109,6 @@ void init_ucs(void)
for (i = 0; i < 256; i++) {
unitab_line[i] = unitab_scoacs[i] = i;
unitab_xterm[i] = i & 0x1F;
unitab_xterm[i] = (i+1) & 0x1F;
}
}