summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorThomas Hallgren <th-github@altocumulus.org>2018-12-01 15:53:58 +0100
committerThomas Hallgren <th-github@altocumulus.org>2018-12-01 15:53:58 +0100
commite6c2c844e9394a13eeec364d9d2d30c32f33349e (patch)
treee8523edbd68761c8295429cb47ef6d398004cc0f /src/compiler
parent883a7a95a14b9d3c15713678e24572153d2fbfec (diff)
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
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/GF/Main.hs2
1 files changed, 1 insertions, 1 deletions
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.