From 7fe288ace349d993209dd709d22f0f58061ca8ce Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Sun, 7 Oct 2012 15:20:31 +0100 Subject: [PATCH] No need for the local variable 'title' --- filechooser.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/filechooser.lua b/filechooser.lua index a6fdcb86c..f1b4f4aad 100644 --- a/filechooser.lua +++ b/filechooser.lua @@ -498,8 +498,7 @@ function FileChooser:addAllCommands() self.commands:add(KEY_H,nil,"H", "show help page", function(self) - local title="Hotkeys "..G_program_version - HelpPage:show(0, G_height, self.commands, title) + HelpPage:show(0, G_height, self.commands, "Hotkeys "..G_program_version) self.pagedirty = true end )