Temporary hack which makes vt100 line drawing work in the prototype
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 10 Oct 2002 11:33:46 +0000 (11:33 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 10 Oct 2002 11:33:46 +0000 (11:33 +0000)
pterm.

git-svn-id: svn://svn.tartarus.org/sgt/putty@2012 cda61777-01e9-0310-a592-d414129be87e

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