summaryrefslogtreecommitdiffhomepage
path: root/lib/Language/Haskell/Stylish/Align.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Language/Haskell/Stylish/Align.hs')
-rw-r--r--lib/Language/Haskell/Stylish/Align.hs13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/Language/Haskell/Stylish/Align.hs b/lib/Language/Haskell/Stylish/Align.hs
index 53549b9..1f28d7a 100644
--- a/lib/Language/Haskell/Stylish/Align.hs
+++ b/lib/Language/Haskell/Stylish/Align.hs
@@ -55,16 +55,21 @@ data Alignable a = Alignable
--------------------------------------------------------------------------------
-- | Create changes that perform the alignment.
align
- :: Int -- ^ Max columns
+ :: Maybe Int -- ^ Max columns
-> [Alignable H.SrcSpan] -- ^ Alignables
-> [Change String] -- ^ Changes performing the alignment.
align _ [] = []
align maxColumns alignment
-- Do not make any change if we would go past the maximum number of columns.
- | longestLeft + longestRight > maxColumns = []
- | not (fixable alignment) = []
- | otherwise = map align' alignment
+ | exceedsColumns (longestLeft + longestRight) = []
+ | not (fixable alignment) = []
+ | otherwise = map align' alignment
where
+ exceedsColumns i = case maxColumns of
+ Nothing -> False -- No number exceeds a maximum column count of
+ -- Nothing, because there is no limit to exceed.
+ Just c -> i > c
+
-- The longest thing in the left column.
longestLeft = maximum $ map (H.srcSpanEndColumn . aLeft) alignment