]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - xlat.c
ISO8859-2 to CP852 output translation wants to have Win1250 to ISO8859-2
[PuTTY.git] / xlat.c
diff --git a/xlat.c b/xlat.c
index d72e3bfb89ff4d6f7d109d792b7ef681c4aafc3c..57a35f22d8a63690db9dbcedd94e8e99fa934f08 100644 (file)
--- a/xlat.c
+++ b/xlat.c
@@ -133,10 +133,8 @@ unsigned char xlat_kbd2tty(unsigned char c)
 {
     if(cfg.xlat_enablekoiwin)
        return win2koi[c];
-    else if (cfg.xlat_88592w1250)
+    else if (cfg.xlat_88592w1250 || cfg.xlat_88592cp852)
         return xlatWIN1250toISO88592[c];
-    else if (cfg.xlat_88592cp852)
-        return xlatCP852toISO88592[c];
     return c;
 }