From 4fcac006a224637b98c45e06aa9a322935074867 Mon Sep 17 00:00:00 2001 From: rrt Date: Wed, 11 Jul 2001 10:20:43 +0000 Subject: [PATCH] [project @ 2001-07-11 10:20:43 by rrt] Fix spacing bogon. --- ghc/compiler/main/SysTools.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/main/SysTools.lhs b/ghc/compiler/main/SysTools.lhs index 399f9db..47ad974 100644 --- a/ghc/compiler/main/SysTools.lhs +++ b/ghc/compiler/main/SysTools.lhs @@ -685,7 +685,7 @@ slash s1 s2 = s1 ++ ('/' : s2) getExecDir :: IO (Maybe String) getExecDir = do h <- getModuleHandle Nothing n <- getModuleFileName h - return (Just (reverse (tail (dropWhile (not .isSlash) (reverse (unDosifyPath n)))))) + return (Just (reverse (tail (dropWhile (not . isSlash) (reverse (unDosifyPath n)))))) #else getExecDir :: IO (Maybe String) = do return Nothing #endif -- 1.7.10.4