normalise file names.

This commit is contained in:
Kazu Yamamoto 2013-03-05 15:18:57 +09:00
parent 4f44d54b0a
commit 87d48127db

View File

@ -14,6 +14,7 @@ import GHC
import qualified Gap
import HscTypes
import Outputable
import System.FilePath (normalise)
----------------------------------------------------------------
@ -52,7 +53,7 @@ ppErrMsg err = ppMsg spn SevError msg defaultUserStyle ++ ext
ppMsg :: SrcSpan -> Severity-> SDoc -> PprStyle -> String
ppMsg spn sev msg stl = fromMaybe def $ do
(line,col,_,_) <- Gap.getSrcSpan spn
file <- Gap.getSrcFile spn
file <- normalise <$> Gap.getSrcFile spn
let severityCaption = Gap.showSeverityCaption sev
return $ file ++ ":" ++ show line ++ ":"
++ show col ++ ":" ++ severityCaption ++ cts ++ "\0"