[Git][ghc/ghc][wip/strict-break] fix tab whitespace
Josh Meredith (@JoshMeredith)
gitlab at gitlab.haskell.org
Thu Jan 12 11:17:12 UTC 2023
Josh Meredith pushed to branch wip/strict-break at Glasgow Haskell Compiler / GHC
Commits:
7926c0db by Josh Meredith at 2023-01-12T11:16:55+00:00
fix tab whitespace
- - - - -
1 changed file:
- libraries/base/GHC/List.hs
Changes:
=====================================
libraries/base/GHC/List.hs
=====================================
@@ -1108,7 +1108,7 @@ break_ p xs@(x:xs')
break' _ xs@[] = (xs, xs)
break' p xs@(x:xs')
| p x = ([], xs)
- | otherwise = let !(ys, zs) = break' p xs' in (x:ys, zs)
+ | otherwise = let !(ys, zs) = break' p xs' in (x:ys, zs)
break = break'
#if MIN_VERSION_base(4,17,0)
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/7926c0dba8333e920ba84b04961a70e844062140
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/7926c0dba8333e920ba84b04961a70e844062140
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20230112/044eff88/attachment-0001.html>
More information about the ghc-commits
mailing list