summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/AddUrl.hs2
-rw-r--r--Command/Map.hs2
-rw-r--r--Command/Unused.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Command/AddUrl.hs b/Command/AddUrl.hs
index 8cc148440..169875f4b 100644
--- a/Command/AddUrl.hs
+++ b/Command/AddUrl.hs
@@ -387,7 +387,7 @@ url2file url pathdepth pathmax = case pathdepth of
]
frombits a = intercalate "/" $ a urlbits
urlbits = map (truncateFilePath pathmax . sanitizeFilePath) $
- filter (not . null) $ split "/" fullurl
+ filter (not . null) $ splitc '/' fullurl
urlString2file :: URLString -> Maybe Int -> Int -> FilePath
urlString2file s pathdepth pathmax = case Url.parseURIRelaxed s of
diff --git a/Command/Map.hs b/Command/Map.hs
index 43c00d257..b04beb477 100644
--- a/Command/Map.hs
+++ b/Command/Map.hs
@@ -92,7 +92,7 @@ hostname r
| otherwise = "localhost"
basehostname :: Git.Repo -> String
-basehostname r = fromMaybe "" $ headMaybe $ split "." $ hostname r
+basehostname r = fromMaybe "" $ headMaybe $ splitc '.' $ hostname r
{- A name to display for a repo. Uses the name from uuid.log if available,
- or the remote name if not. -}
diff --git a/Command/Unused.hs b/Command/Unused.hs
index 1711fe047..3953f4486 100644
--- a/Command/Unused.hs
+++ b/Command/Unused.hs
@@ -269,7 +269,7 @@ withKeysReferencedDiff a getdiff extractsha = do
forM_ ds go
liftIO $ void clean
where
- go d = do
+ go d = do
let sha = extractsha d
unless (sha == nullSha) $
(parseLinkOrPointer <$> catObject sha)