From 860195b72e08f44539f0569e06d2efaad2bb05a1 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Mon, 2 Aug 2010 11:08:03 +0000 Subject: [PATCH] Remove "On by default" comments in DynFlags These make less sense now we support multiple languges. The "languageExtensions" function gives the defaults. --- compiler/main/DynFlags.hs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 8b35821..6524ba6 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1752,7 +1752,6 @@ xFlags = [ ( "TemplateHaskell", Opt_TemplateHaskell, const Supported ), ( "QuasiQuotes", Opt_QuasiQuotes, const Supported ), ( "Generics", Opt_Generics, const Supported ), - -- On by default: ( "ImplicitPrelude", Opt_ImplicitPrelude, const Supported ), ( "RecordWildCards", Opt_RecordWildCards, const Supported ), ( "NamedFieldPuns", Opt_RecordPuns, const Supported ), @@ -1764,16 +1763,12 @@ xFlags = [ ( "ViewPatterns", Opt_ViewPatterns, const Supported ), ( "TypeFamilies", Opt_TypeFamilies, const Supported ), ( "BangPatterns", Opt_BangPatterns, const Supported ), - -- On by default: ( "MonomorphismRestriction", Opt_MonomorphismRestriction, const Supported ), - -- On by default: ( "NPlusKPatterns", Opt_NPlusKPatterns, const Supported ), - -- On by default (which is not strictly H98): ( "MonoPatBinds", Opt_MonoPatBinds, const Supported ), ( "ExplicitForAll", Opt_ExplicitForAll, const Supported ), ( "AlternativeLayoutRule", Opt_AlternativeLayoutRule, const Supported ), ( "AlternativeLayoutRuleTransitional",Opt_AlternativeLayoutRuleTransitional, const Supported ), - -- On by default: ( "DatatypeContexts", Opt_DatatypeContexts, const Supported ), ( "MonoLocalBinds", Opt_MonoLocalBinds, const Supported ), ( "RelaxedPolyRec", Opt_RelaxedPolyRec, const Supported ), -- 1.7.10.4