[project @ 2003-05-25 20:54:18 by stolz]
authorstolz <unknown>
Sun, 25 May 2003 20:54:18 +0000 (20:54 +0000)
committerstolz <unknown>
Sun, 25 May 2003 20:54:18 +0000 (20:54 +0000)
Fix quoted source filenames on *nix

Noticed by: Calle Lejdfors
(please merge)

ghc/compiler/main/SysTools.lhs

index 5d2c180..d99ce5d 100644 (file)
@@ -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}