Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!uwm.edu!gem.mps.ohio-state.edu!tut.cis.ohio-state.edu!snorkelwacker!bloom-beacon!eru!luth!sunic!dkuug!dde!pho From: pho@dde.dk (Peter Holm) Newsgroups: comp.windows.x Subject: 8 bit xterm. Keywords: Line Graphics Characters. Message-ID: <718@Aragorn.dde.dk> Date: 24 Oct 89 13:00:48 GMT Organization: Dansk Data Elektronik A/S, Herlev, Denmark Lines: 20 I added the following hack to xterm/charproc.c : 392c392 < switch(parsestate[c = doinput()]) { --- > switch(parsestate[(c = doinput()) & 0x7f]) { 398c398 < while(top > 0 && isprint(*cp)) { --- > while(top > 0 && isprint(*cp & 0x7f)) { in order to use 8 bit character sets. It works fine, but my problem is the line graphics characters. They are not part of the iso8859 character set. So how do i display them? Any suggestions? -- Peter Holm Tel: int +45 42 84 50 11 (UTC + 1) Dansk Data Elektronik A/S Fax: int +45 42 84 52 20 Herlev Hovedgade 199 Telex: 35258 dde dk DK-2730 Herlev, Denmark E-mail: pho@dde.dk