From 02ad09def3e3fe962468523c0ea17446b5a890f1 Mon Sep 17 00:00:00 2001 From: David Waern Date: Sat, 24 Jul 2010 15:33:33 +0000 Subject: Fix build with ghc < 6.13 --- src/Haddock/Lex.x | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/Haddock/Lex.x b/src/Haddock/Lex.x index a92f4591..766f12ed 100644 --- a/src/Haddock/Lex.x +++ b/src/Haddock/Lex.x @@ -184,7 +184,11 @@ ident pos str sc cont dflags = strToHsQNames :: DynFlags -> String -> Maybe [RdrName] strToHsQNames dflags str0 = let buffer = unsafePerformIO (stringToStringBuffer str0) +#if MIN_VERSION_ghc(6,13,0) pstate = mkPState dflags buffer noSrcLoc +#else + pstate = mkPState buffer noSrcLoc dflags +#endif result = unP parseIdentifier pstate in case result of POk _ name -> Just [unLoc name] -- cgit v1.2.3