[project @ 2005-07-27 00:52:33 by ross]
authorross <unknown>
Wed, 27 Jul 2005 00:52:33 +0000 (00:52 +0000)
committerross <unknown>
Wed, 27 Jul 2005 00:52:33 +0000 (00:52 +0000)
Hugs only: no longer need backslash fiddle now that Hugs leaves them alone.

System/Cmd.hs

index 730b0ca..2d8635f 100644 (file)
@@ -123,16 +123,12 @@ translate :: String -> String
 translate str = '\'' : foldr escape "'" str
   where        escape '\'' = showString "'\\''"
        escape c    = showChar c
-#elif __HUGS__
+#else /* mingw32_HOST_OS &&  ! __GLASGOW_HASKELL__ */
+# if __HUGS__
 rawSystem cmd args = system (unwords (cmd : map translate args))
-
-translate :: String -> String
-translate str = '"' : foldr escape "\"" str
-  where        escape '"'  = showString "\\\""
-       escape '\\' = showString "\\\\"
-       escape c    = showChar c
-#else /* mingw32_HOST_OS &&  ! __GLASGOW_HASKELL__ && ! __HUGS__ */
+# else
 rawSystem cmd args = system (unwords (map translate (cmd:args)))
+#endif
 
 -- copied from System.Process (qv)
 translate :: String -> String