Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion optparse-applicative.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ library
if flag(process)
build-depends: process >= 1.0 && < 1.7

if !impl(ghc >= 8) && !impl(mhs)
if impl(ghc < 8)
build-depends: semigroups >= 0.10 && < 0.21
, fail == 4.9.*

Expand Down
4 changes: 2 additions & 2 deletions src/Options/Applicative/BashCompletion.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module Options.Applicative.BashCompletion

import Control.Applicative
import Prelude
#if !defined(__MHS__)
#if !MIN_VERSION_base(4,16,0)
import Data.Foldable ( asum )
#endif

Expand Down Expand Up @@ -232,7 +232,7 @@ words.
Tab characters separate items from descriptions.
-}

-- | Generated fish shell completion script
-- | Generated fish shell completion script
fishCompletionScript :: String -> String -> String
fishCompletionScript prog progn = unlines
[ " function _" ++ progn
Expand Down
1 change: 0 additions & 1 deletion src/Options/Applicative/Help/Core.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{-# LANGUAGE CPP #-}
module Options.Applicative.Help.Core (
cmdDesc,
briefDesc,
Expand Down
Loading