mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
Merge pull request #988 from github/empty-lang
Set LANG to utf8 if it's the empty string
This commit is contained in:
commit
6c1eb73c74
@ -113,7 +113,11 @@ writeToOutput output text =
|
||||
case output of
|
||||
Nothing -> do
|
||||
lang <- lookupEnv "LANG"
|
||||
if isNothing lang then IO.hSetEncoding IO.stdout IO.utf8 else pure ()
|
||||
case lang of
|
||||
-- If LANG is set and isn't the empty string, leave the encoding.
|
||||
Just x | x /= "" -> pure ()
|
||||
-- Otherwise default to utf8.
|
||||
_ -> IO.hSetEncoding IO.stdout IO.utf8
|
||||
TextIO.hPutStrLn IO.stdout text
|
||||
Just path -> do
|
||||
isDir <- doesDirectoryExist path
|
||||
|
Loading…
Reference in New Issue
Block a user