From 7cbbd0fbabd142895c7c1e9f83d1cc153c0d3aa4 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 6 Mar 2014 17:50:46 -0800 Subject: [PATCH] add: fix over-zealous cleanup caught by hydra, continued --- hledger/Hledger/Cli/Add.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/hledger/Hledger/Cli/Add.hs b/hledger/Hledger/Cli/Add.hs index 3539a0683..46de6aa0b 100644 --- a/hledger/Hledger/Cli/Add.hs +++ b/hledger/Hledger/Cli/Add.hs @@ -307,7 +307,6 @@ completer completions def = completeWord Nothing "" completionsFor completionsFor "" = return [simpleCompletion' def] completionsFor i = return (map simpleCompletion' ciprefixmatches) where - simpleCompletion' s = (simpleCompletion s){isFinished=False} ciprefixmatches = [c | c <- completions, i `isPrefixOf` c] -- mixed-case completions require haskeline > 0.7.1.2 -- ciprefixmatches = [c | c <- completions, lowercase i `isPrefixOf` lowercase c]