From ed282e281023b5a06d7515be0f3789d3de41a876 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 10 Oct 2000 12:43:24 +0000 Subject: [PATCH] ISO8859-2 to CP852 output translation wants to have Win1250 to ISO8859-2 input translation as its counterpart, not CP852 to ISO8859-2. Because the reason you want this translation is if your _font_ is coded CP852 - in which case your keymap will not follow suit but will still be in Win1250. git-svn-id: svn://svn.tartarus.org/sgt/putty@701 cda61777-01e9-0310-a592-d414129be87e --- xlat.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xlat.c b/xlat.c index d72e3bfb..57a35f22 100644 --- 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; } -- 2.11.0