Temporary hack which makes vt100 line drawing work in the prototype
[u/mdw/putty] / unix / uxucs.c
index fbd4e96..580f94b 100644 (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;
     }
 }
\ No newline at end of file