From: simon Date: Thu, 10 Oct 2002 11:33:46 +0000 (+0000) Subject: Temporary hack which makes vt100 line drawing work in the prototype X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/2c0380dc65ab5ea511633764aaa59de4c07e669b Temporary hack which makes vt100 line drawing work in the prototype pterm. git-svn-id: svn://svn.tartarus.org/sgt/putty@2012 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/unix/uxucs.c b/unix/uxucs.c index fbd4e967..580f94b9 100644 --- a/unix/uxucs.c +++ b/unix/uxucs.c @@ -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