Replaced double loop with a single one.

Unless I am missing something there is no purpose of using two loops
instead of one.

Signed-off-by: Alex Cornejo <acornejo@gmail.com>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Alex Cornejo 2009-03-17 18:47:41 -04:00 committed by Julien Danjou
parent 96cf05f002
commit 7fc8f4abc7
1 changed files with 10 additions and 12 deletions

View File

@ -299,11 +299,8 @@ for i = 1, keynumber do
awful.client.toggletag(tags[client.focus.screen][i])
end
end))
end
for i = 1, keynumber do
table.insert(globalkeys, key({ modkey, "Shift" }, "F" .. i,
table.insert(globalkeys,
key({ modkey, "Shift" }, "F" .. i,
function ()
local screen = mouse.screen
if tags[screen][i] then
@ -314,6 +311,7 @@ for i = 1, keynumber do
end))
end
-- Set keys
root.keys(globalkeys)
-- }}}