diff options
author | Lukas Mai <l.mai@web.de> | 2008-09-30 16:00:56 +0200 |
---|---|---|
committer | Lukas Mai <l.mai@web.de> | 2008-09-30 16:00:56 +0200 |
commit | 3e16bf804b6f45b795b85cb64cb650273d317589 (patch) | |
tree | e87927a9429bfd7cbbb768c9b1166c3420b71c63 /XMonad/Util | |
parent | 03fef93a28ee68b36beaba8257d60decd4a9bb75 (diff) | |
download | XMonadContrib-3e16bf804b6f45b795b85cb64cb650273d317589.tar.gz XMonadContrib-3e16bf804b6f45b795b85cb64cb650273d317589.tar.xz XMonadContrib-3e16bf804b6f45b795b85cb64cb650273d317589.zip |
XMonad.Util.Font: UTF8 -> USE_UTF8
darcs-hash:20080930140056-462cf-8a61de464b460befca24edbefcbf98901d984cfa.gz
Diffstat (limited to 'XMonad/Util')
-rw-r--r-- | XMonad/Util/Font.hsc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Util/Font.hsc b/XMonad/Util/Font.hsc index 76bfebc..9a3ea81 100644 --- a/XMonad/Util/Font.hsc +++ b/XMonad/Util/Font.hsc @@ -195,14 +195,14 @@ printStringXMF dpy drw fs@(Xft font) gc fc bc x y s = do #endif decodeInput :: String -> String -#if defined XFT || defined UTF8 +#if defined XFT || defined USE_UTF8 decodeInput = decodeString #else decodeInput = id #endif encodeOutput :: String -> String -#if defined XFT || defined UTF8 +#if defined XFT || defined USE_UTF8 encodeOutput = encodeString #else encodeOutput = id |