From b301b6ecef42b3787c0b6bbf81ad3301c36331fc Mon Sep 17 00:00:00 2001 From: stolz Date: Sun, 25 May 2003 20:54:18 +0000 Subject: [PATCH] [project @ 2003-05-25 20:54:18 by stolz] Fix quoted source filenames on *nix Noticed by: Calle Lejdfors (please merge) --- ghc/compiler/main/SysTools.lhs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ghc/compiler/main/SysTools.lhs b/ghc/compiler/main/SysTools.lhs index 5d2c180..d99ce5d 100644 --- a/ghc/compiler/main/SysTools.lhs +++ b/ghc/compiler/main/SysTools.lhs @@ -860,11 +860,7 @@ getProcessID = Posix.getProcessID #endif quote :: String -> String -#if defined(mingw32_HOST_OS) quote "" = "" quote s = "\"" ++ s ++ "\"" -#else -quote s = s -#endif \end{code} -- 1.7.10.4