summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Parsers.hs6
1 files changed, 0 insertions, 6 deletions
diff --git a/Parsers.hs b/Parsers.hs
index e09c4bf..8792a69 100644
--- a/Parsers.hs
+++ b/Parsers.hs
@@ -97,11 +97,5 @@ combine c m ((ts,s,ss):xs) = (com, s, ss) : combine c m xs
where com = Map.findWithDefault dflt ts m
dflt = Run $ Com ts [] [] 10
-endOfLine :: a -> Parser a
-endOfLine r = eof >> return r
-
-tryString :: String -> Parser String
-tryString = try . string
-
allTillSep :: Config -> Parser String
allTillSep = many . noneOf . sepChar