diff options
author | jao <jao@gnu.org> | 2017-04-29 02:09:24 +0200 |
---|---|---|
committer | jao <jao@gnu.org> | 2017-04-29 02:09:24 +0200 |
commit | e41fd61bdeac8779fa24050cc0d44714f7c90f1d (patch) | |
tree | f724480c121a1246c942ed913f167fa71a9e2564 /src/Plugins/Kbd.hsc | |
parent | 938a8d8307c1c4794c5fcf269c587c3c5c5e70df (diff) | |
download | xmobar-e41fd61bdeac8779fa24050cc0d44714f7c90f1d.tar.gz xmobar-e41fd61bdeac8779fa24050cc0d44714f7c90f1d.tar.bz2 |
hlint configuration
Diffstat (limited to 'src/Plugins/Kbd.hsc')
-rw-r--r-- | src/Plugins/Kbd.hsc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Plugins/Kbd.hsc b/src/Plugins/Kbd.hsc index 59854f5..c582634 100644 --- a/src/Plugins/Kbd.hsc +++ b/src/Plugins/Kbd.hsc @@ -380,7 +380,7 @@ instance Exec Kbd where dpy <- openDisplay "" -- initial set of layout - cb =<< (getKbdLay dpy opts) + cb =<< getKbdLay dpy opts -- enable listing for -- group changes @@ -391,7 +391,7 @@ instance Exec Kbd where allocaXEvent $ \e -> forever $ do nextEvent' dpy e _ <- getEvent e - cb =<< (getKbdLay dpy opts) + cb =<< getKbdLay dpy opts closeDisplay dpy return () |