From 34e4ac65f22188e4902ea9d9ce2c8e06e09a592c Mon Sep 17 00:00:00 2001 From: rrt Date: Tue, 21 Aug 2001 09:04:22 +0000 Subject: [PATCH] [project @ 2001-08-21 09:04:22 by rrt] Remove unused function isSlash --- ghc/compiler/main/SysTools.lhs | 3 --- 1 file changed, 3 deletions(-) diff --git a/ghc/compiler/main/SysTools.lhs b/ghc/compiler/main/SysTools.lhs index 2e0edd0..20a8099 100644 --- a/ghc/compiler/main/SysTools.lhs +++ b/ghc/compiler/main/SysTools.lhs @@ -791,9 +791,6 @@ subst a b ls = map (\ x -> if x == a then b else x) ls slash :: String -> String -> String absPath, relPath :: [String] -> String -isSlash '/' = True -isSlash other = False - relPath [] = "" relPath xs = foldr1 slash xs -- 1.7.10.4