aboutsummaryrefslogtreecommitdiff
path: root/src/Internal/Keys.hs
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2022-03-28 23:27:45 -0600
committerJosh Rahm <joshuarahm@gmail.com>2022-03-28 23:27:45 -0600
commit685d67d19d2e94fc94ed7334e5e7ab19454426d7 (patch)
treea4df88d0c9d98d3ba7513bc6c679c80a96c112e0 /src/Internal/Keys.hs
parentefe9e1a5f8474a865e2762d3a795dbe43763985b (diff)
downloadrde-685d67d19d2e94fc94ed7334e5e7ab19454426d7.tar.gz
rde-685d67d19d2e94fc94ed7334e5e7ab19454426d7.tar.bz2
rde-685d67d19d2e94fc94ed7334e5e7ab19454426d7.zip
Fix things that Hlint is complaining about.
Diffstat (limited to 'src/Internal/Keys.hs')
-rw-r--r--src/Internal/Keys.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs
index b322eb4..446b7b7 100644
--- a/src/Internal/Keys.hs
+++ b/src/Internal/Keys.hs
@@ -277,7 +277,7 @@ keymap = runKeys $ do
recur
bind xK_v $ do
- justMod $ recur
+ justMod recur
bind xK_w $ do
justMod windowJump
@@ -494,4 +494,4 @@ modifyWindowBorder i = ModifyWindowBorder $ \(Border a b c d) ->
Border (clip $ a + i) (clip $ b + i) (clip $ c + i) (clip $ d + i)
where clip i | i < 0 = 0
- clip i | otherwise = i
+ clip i = i