From 8fc895ef3e92b048f792cf0ab6bc1cabb5ee63bf Mon Sep 17 00:00:00 2001
From: Don Armstrong <don@donarmstrong.com>
Date: Wed, 3 Aug 2011 23:00:24 +0000
Subject: [PATCH] fix missing comma

---
 .config/awesome/rc.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 813cea9..0c3b1f5 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -249,7 +249,7 @@ clientkeys = awful.util.table.join(
     awful.key({ modkey, "Control" }, "space",  awful.client.floating.toggle                     ),
     awful.key({ modkey,           }, "space", function (c) c:swap(awful.client.getmaster()) end),
     awful.key({ modkey,           }, "o",      awful.client.movetoscreen                        ),
-    awful.key({ modkey,           }, "t",      function (c) c.ontop = not c.ontop            end)
+    awful.key({ modkey,           }, "t",      function (c) c.ontop = not c.ontop            end),
     awful.key({ modkey, "Shift"   }, "r",      function (c) c:redraw()                       end),
     awful.key({ modkey, "Shift"   }, "m",      function (c) c.minimized = not c.minimized    end),
     awful.key({ modkey,           }, "m",
-- 
2.39.5