aboutsummaryrefslogtreecommitdiffstats
path: root/ShellPrompt.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-10-11 20:28:16 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-10-11 20:28:16 +0200
commit7d051febc2ac8d9b8f2c87f9cdfde808ba057a4c (patch)
tree59c868b9fa35ae3d27c5a4e866892744ecc0825a /ShellPrompt.hs
parent2b88bc68ebab02a03c7ffc158324719bb5cc11ff (diff)
downloadXMonadContrib-7d051febc2ac8d9b8f2c87f9cdfde808ba057a4c.tar.gz
XMonadContrib-7d051febc2ac8d9b8f2c87f9cdfde808ba057a4c.tar.xz
XMonadContrib-7d051febc2ac8d9b8f2c87f9cdfde808ba057a4c.zip
Remove spurious output from ShellPrompt
darcs-hash:20071011182816-a5988-c95c4d60081d46de24269b70cbffe1dccc7e6f11.gz
Diffstat (limited to '')
-rw-r--r--ShellPrompt.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ShellPrompt.hs b/ShellPrompt.hs
index ecd8d56..b52fda8 100644
--- a/ShellPrompt.hs
+++ b/ShellPrompt.hs
@@ -60,7 +60,6 @@ getShellCompl s
| s /= "" && last s /= ' ' = do
f <- fmap lines $ runProcessWithInput "/bin/bash" [] ("compgen -A file " ++ s ++ "\n")
c <- commandCompletionFunction s
- hPutStrLn stdout s
return . map escape . sort . nub $ f ++ c
| otherwise = return []