From 2a1a18023a15d13247148638edf29ca6bf9c3bce Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Thu, 31 Dec 2020 20:17:22 -0600 Subject: [PATCH 1/2] Accord with new pattern-match --- src/XMonad/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XMonad/Main.hs b/src/XMonad/Main.hs index 1b0b16e3..7041c388 100644 --- a/src/XMonad/Main.hs +++ b/src/XMonad/Main.hs @@ -61,7 +61,7 @@ xmonad conf = do let launch' args = do catchIO buildLaunch - conf' @ XConfig { layoutHook = Layout l } + conf'@XConfig { layoutHook = Layout l } <- handleExtraArgs conf args conf{ layoutHook = Layout (layoutHook conf) } withArgs [] $ launch (conf' { layoutHook = l }) From ec1c3e01597b23524225c72a4beb398a858a4668 Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Thu, 31 Dec 2020 20:19:10 -0600 Subject: [PATCH 2/2] update changelog --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index a146f2da..6715c449 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -13,6 +13,8 @@ * Export constructor for `Choose` and `CLR` from `Module.Layout` to allow pattern-matching on the left and right sub-layouts of `Choose l r a`. + * Compatibility with GHC 9.0 + ## 0.15 (September 30, 2018) * Reimplement `sendMessage` to deal properly with windowset changes made