From e6c2c844e9394a13eeec364d9d2d30c32f33349e Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Sat, 1 Dec 2018 15:53:58 +0100 Subject: [PATCH] GF.Main: leave the code page unchanged on Windows This should make it easier to use GF with UTF-8 in the Windows Console See https://groups.google.com/forum/#!topic/gf-dev/DCou6FDhCnU --- src/compiler/GF/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/GF/Main.hs b/src/compiler/GF/Main.hs index 642ddf565..7cde1ce97 100644 --- a/src/compiler/GF/Main.hs +++ b/src/compiler/GF/Main.hs @@ -23,7 +23,7 @@ import GF.System.Console (setConsoleEncoding) -- Run @gf --help@ for usage info. main :: IO () main = do - setConsoleEncoding + --setConsoleEncoding uncurry mainOpts =<< getOptions -- | Get and parse GF command line arguments. Fix relative paths.