diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-10-27 00:15:05 +0200 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-10-27 00:15:05 +0200 |
commit | 246ed3137ca4dd1f7f84e3e5023786d38651c348 (patch) | |
tree | e40b1efc1d5eb752aac985eebd88710504f813c7 /XPrompt.hs | |
parent | 394a4118f206e08d4a5c253eb6b934294a8bf0b7 (diff) | |
download | XMonadContrib-246ed3137ca4dd1f7f84e3e5023786d38651c348.tar.gz XMonadContrib-246ed3137ca4dd1f7f84e3e5023786d38651c348.tar.xz XMonadContrib-246ed3137ca4dd1f7f84e3e5023786d38651c348.zip |
XPrompt: removed unneeded parenteses
darcs-hash:20071026221505-32816-6b1d59ea7fe4027f1114113feb9dec54200ba32b.gz
Diffstat (limited to 'XPrompt.hs')
-rw-r--r-- | XPrompt.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -446,8 +446,8 @@ printPrompt drw = do getCompletions :: XP [String] getCompletions = do s <- get - io $ ((completionFunction s) (getLastWord $ command s) - `catch` \_ -> return []) + io $ (completionFunction s) (getLastWord $ command s) + `catch` \_ -> return [] setComplWin :: Window -> ComplWindowDim -> XP () setComplWin w wi = |