diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2017-06-02 11:48:57 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-06-02 12:27:45 -0400 |
commit | bf775e9d6895c07f629409ee18503f40730cb5a0 (patch) | |
tree | 2036cd5a0bd1acb0c62357af3b4b0691d43634d7 /utils/mkUserGuidePart/Options/CompilerDebugging.hs | |
parent | d0fb0df349d0e51b2b3f7980a8b1eca80051d67f (diff) | |
download | haskell-bf775e9d6895c07f629409ee18503f40730cb5a0.tar.gz |
Remove references to static flags in flag reference
A follow-up to #8440 (Ditch static flags). There are still some
lingering references to static flags in the flag reference, so let's
modify those references accordingly.
Test Plan: Build the documentation
Reviewers: bgamari, austin
Reviewed By: bgamari
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3615
Diffstat (limited to 'utils/mkUserGuidePart/Options/CompilerDebugging.hs')
-rw-r--r-- | utils/mkUserGuidePart/Options/CompilerDebugging.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/mkUserGuidePart/Options/CompilerDebugging.hs b/utils/mkUserGuidePart/Options/CompilerDebugging.hs index c886156d80..9704020601 100644 --- a/utils/mkUserGuidePart/Options/CompilerDebugging.hs +++ b/utils/mkUserGuidePart/Options/CompilerDebugging.hs @@ -175,11 +175,11 @@ compilerDebuggingOptions = } , flag { flagName = "-dno-debug-output" , flagDescription = "Suppress unsolicited debugging output" - , flagType = StaticFlag + , flagType = DynamicFlag } , flag { flagName = "-dppr-debug" , flagDescription = "Turn on debug printing (more verbose)" - , flagType = StaticFlag + , flagType = DynamicFlag } , flag { flagName = "-dppr-user-length" , flagDescription = |