From 39fb4bb56f5c5644aba0603c01cbad112b66273c Mon Sep 17 00:00:00 2001 From: Přemysl Janouch Date: Wed, 9 Feb 2011 14:18:22 +0100 Subject: Make all variables in Lua scripts local. --- share/library/Logical/or.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'share/library/Logical/or.lua') diff --git a/share/library/Logical/or.lua b/share/library/Logical/or.lua index b0f76fc..49ccd6c 100644 --- a/share/library/Logical/or.lua +++ b/share/library/Logical/or.lua @@ -1,18 +1,18 @@ -- Symbol name -names = +local names = { en = "OR", cs = "OR" } -- Render area in base units (X1, Y1, X2, Y2) -area = {-4, -2, 5, 2} +local area = {-4, -2, 5, 2} -- Terminals -terminals = {{-4, -1}, {-4, 1}, {5, 0}} +local terminals = {{-4, -1}, {-4, 1}, {5, 0}} -- Rendering -render = function (cr) +local render = function (cr) -- The main shape cr.move_to (-2, -2) cr.line_to (0, -2) -- cgit v1.2.3-54-g00ecf