Return condition value instead of conditional true/false

Patterns like

if condition then
  return true
else
  return false
end

could be simplified to

return condition

Signed-off-by: Felix <flx.bier@googlemail.com>
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Felix 2012-05-11 17:42:45 +02:00 committed by Uli Schlachter
parent 887b110f5d
commit 1a91fd64b9
1 changed files with 2 additions and 6 deletions

View File

@ -154,8 +154,7 @@ end
-- @return true if c is on screen, false otherwise
function filter.alltags(c, screen)
-- Only print client on the same screen as this widget
if c.screen ~= screen then return false end
return true
return c.screen == screen
end
--- Filtering function to include only the clients from currently selected tags.
@ -213,10 +212,7 @@ end
-- @return true if c is focused on screen, false otherwise
function filter.focused(c, screen)
-- Only print client on the same screen as this widget
if c.screen == screen and capi.client.focus == c then
return true
end
return false
return c.screen == screen and capi.client.focus == c
end
setmetatable(_M, { __call = function(_, ...) return new(...) end })