From 0432fabf20558e51c6e94c4ffa3cbd94ed741be0 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 20 Oct 2000 11:16:58 +0000 Subject: [PATCH] Replace the 8859-2 -> Win1250 translation which I accidentally blew away [originally from svn r726] --- xlat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xlat.c b/xlat.c index 57a35f22..535497d6 100644 --- 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; -- 2.45.2