From: Ian Lynagh Date: Sat, 4 Aug 2007 15:45:05 +0000 (+0000) Subject: Add -fparr deprecated flag, and change -XParr to -XPArr X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=fa15af5162d202a8c29e9327e1ac298f2ad900e0 Add -fparr deprecated flag, and change -XParr to -XPArr -fparr did exist before, it just wasn't documented. --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 3de4012..32faa8d 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1159,6 +1159,8 @@ fFlags = [ ( "implicit-params", Opt_ImplicitParams ), -- Deprecated in favour of -XScopedTypeVariables: ( "scoped-type-variables", Opt_ScopedTypeVariables ), + -- Deprecated in favour of -XPArr: + ( "parr", Opt_PArr ), -- Deprecated in favour of -XOverlappingInstances: ( "AllowOverlappingInstances", Opt_AllowOverlappingInstances ), -- Deprecated in favour of -XUndecidableInstances: @@ -1190,7 +1192,7 @@ xFlags = [ ( "TypeOperators", Opt_TypeOperators ), ( "RecursiveDo", Opt_RecursiveDo ), ( "Arrows", Opt_Arrows ), - ( "Parr", Opt_PArr ), + ( "PArr", Opt_PArr ), ( "TemplateHaskell", Opt_TH ), ( "Generics", Opt_Generics ), -- On by default: