mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-21 22:28:37 -05:00
Replace the 8859-2 -> Win1250 translation which I accidentally blew away
[originally from svn r726]
This commit is contained in:
parent
26ff0d4e75
commit
0432fabf20
2
xlat.c
2
xlat.c
@ -142,6 +142,8 @@ unsigned char xlat_tty2scr(unsigned char c)
|
|||||||
{
|
{
|
||||||
if(cfg.xlat_enablekoiwin)
|
if(cfg.xlat_enablekoiwin)
|
||||||
return koi2win[c];
|
return koi2win[c];
|
||||||
|
else if (cfg.xlat_88592w1250)
|
||||||
|
return xlatISO88592toWIN1250[c];
|
||||||
else if (cfg.xlat_88592cp852)
|
else if (cfg.xlat_88592cp852)
|
||||||
return xlatISO88592toCP852[c];
|
return xlatISO88592toCP852[c];
|
||||||
return c;
|
return c;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user