1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Replace the 8859-2 -> Win1250 translation which I accidentally blew away

[originally from svn r726]
This commit is contained in:
Simon Tatham 2000-10-20 11:16:58 +00:00
parent 26ff0d4e75
commit 0432fabf20

2
xlat.c
View File

@ -142,6 +142,8 @@ unsigned char xlat_tty2scr(unsigned char c)
{
if(cfg.xlat_enablekoiwin)
return koi2win[c];
else if (cfg.xlat_88592w1250)
return xlatISO88592toWIN1250[c];
else if (cfg.xlat_88592cp852)
return xlatISO88592toCP852[c];
return c;