diff options
author | jao <jao@gnu.org> | 2022-05-12 23:14:59 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-05-12 23:14:59 +0100 |
commit | 88017cacad159d826ea8a502e062da079f75e3a2 (patch) | |
tree | 81a35f53da0f5630bb59610736e07b96c6a8fd8a /src/Xmobar/Config | |
parent | ccffb16e0f254db3c07033fafed0d397f005b902 (diff) | |
download | xmobar-88017cacad159d826ea8a502e062da079f75e3a2.tar.gz xmobar-88017cacad159d826ea8a502e062da079f75e3a2.tar.bz2 |
Remove the now useless -DUTF8 flag
Diffstat (limited to 'src/Xmobar/Config')
-rw-r--r-- | src/Xmobar/Config/Parse.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Xmobar/Config/Parse.hs b/src/Xmobar/Config/Parse.hs index 89af808..65e1af8 100644 --- a/src/Xmobar/Config/Parse.hs +++ b/src/Xmobar/Config/Parse.hs @@ -26,12 +26,12 @@ import Data.Functor ((<&>)) import Xmobar.Config.Types -#if defined XFT || defined UTF8 +#ifdef XFT import qualified System.IO as S (readFile) #endif readFileSafe :: FilePath -> IO String -#if defined XFT || defined UTF8 +#ifdef XFT readFileSafe = S.readFile #else readFileSafe = readFile |