You just need to escape the '\' with another '\' inside the string
literal -- ghci isn't cleverer than that, I'm afraid.
 
--sigbjorn
----- Original Message -----
Sent: Thursday, June 12, 2003 00:02
Subject: Re: GHC-6.0: Open with ... bug (again!)

Oops! Sorry about that ;-). It works with '/' but not '\' of course. My mistake.
 
/Calle
----- Original Message -----
Sent: Wednesday, June 11, 2003 6:25 PM
Subject: Re: GHC-6.0: Open with ... bug (again!)

That's good to hear --  :load works as expected for me:
 
Prelude> :load "c:/Program Files/Haskell/Mod1.hs" "c:/Program Files/Haskell/Mod2.hs"
Compiling Mod1   (....)
Compiling Mod2   (....)
Ok, modules loaded: Mod1, Mod2.
Prelude>
 
--sigbjorn
----- Original Message -----
Sent: Wednesday, June 11, 2003 00:01
Subject: Re: GHC-6.0: Open with ... bug (again!)

Hi.
 
Thanks! It seems to work correctly now. However it does not appear to work when loading via :load on the GHCi prompt. It would be nice to get this to work as it would (probably) enable me to run haskell-mode with ghci interaction through emacs under windows.
 
Thanks, Calle