]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Replace the 8859-2 -> Win1250 translation which I accidentally blew away
authorSimon Tatham <anakin@pobox.com>
Fri, 20 Oct 2000 11:16:58 +0000 (11:16 +0000)
committerSimon Tatham <anakin@pobox.com>
Fri, 20 Oct 2000 11:16:58 +0000 (11:16 +0000)
[originally from svn r726]

xlat.c

diff --git a/xlat.c b/xlat.c
index 57a35f22d8a63690db9dbcedd94e8e99fa934f08..535497d6878224cabd346d1585471e3991d33ac4 100644 (file)
--- a/xlat.c
+++ b/xlat.c
@@ -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;