summaryrefslogtreecommitdiffhomepage
path: root/Parsers.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2009-04-09 13:38:19 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2009-04-09 13:38:19 +0200
commit83243937b55862136a0d41303d318d07e51db982 (patch)
tree71f558a763c5e405504130dbad903d88565e42d2 /Parsers.hs
parent530371201a18e497e5ad328c14b93d78bc2017cc (diff)
downloadxmobar-83243937b55862136a0d41303d318d07e51db982.tar.gz
xmobar-83243937b55862136a0d41303d318d07e51db982.tar.bz2
trailing space and variable name for the XFT version of printString
Ignore-this: f39d8322665f04683ec99758d290cf49 darcs-hash:20090409113819-d6583-71f93fdd720f5c83fa833062ec4aaf991b432aec.gz
Diffstat (limited to 'Parsers.hs')
-rw-r--r--Parsers.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parsers.hs b/Parsers.hs
index 8792a69..8867dba 100644
--- a/Parsers.hs
+++ b/Parsers.hs
@@ -73,7 +73,7 @@ templateStringParser c = do
templateCommandParser :: Config -> Parser String
templateCommandParser c =
let chr = char . head . sepChar
- in between (chr c) (chr c) (allTillSep c)
+ in between (chr c) (chr c) (allTillSep c)
-- | Combines the template parsers
templateParser :: Config -> Parser [(String,String,String)]