From 39fb4bb56f5c5644aba0603c01cbad112b66273c Mon Sep 17 00:00:00 2001
From: Přemysl Janouch <p.janouch@gmail.com>
Date: Wed, 9 Feb 2011 14:18:22 +0100
Subject: Make all variables in Lua scripts local.

---
 share/library/Misc/ground.lua       | 8 ++++----
 share/library/Misc/lamp.lua         | 8 ++++----
 share/library/Misc/power-source.lua | 8 ++++----
 share/library/Misc/switch.lua       | 8 ++++----
 4 files changed, 16 insertions(+), 16 deletions(-)

(limited to 'share/library/Misc')

diff --git a/share/library/Misc/ground.lua b/share/library/Misc/ground.lua
index fdcf593..0c36240 100644
--- a/share/library/Misc/ground.lua
+++ b/share/library/Misc/ground.lua
@@ -1,18 +1,18 @@
 -- Symbol name
-names =
+local names =
 {
 	en = "Ground",
 	cs = "Zem"
 }
 
 -- Render area in base units (X1, Y1, X2, Y2)
-area = {-1, -1, 1, 2}
+local area = {-1, -1, 1, 2}
 
 -- Terminals
-terminals = {{0, -1}}
+local terminals = {{0, -1}}
 
 -- Rendering
-render = function (cr)
+local render = function (cr)
 	-- The vertical line
 	cr.move_to (0, -1)
 	cr.line_to (0, 0.5)
diff --git a/share/library/Misc/lamp.lua b/share/library/Misc/lamp.lua
index b662cec..9ecf9ea 100644
--- a/share/library/Misc/lamp.lua
+++ b/share/library/Misc/lamp.lua
@@ -1,18 +1,18 @@
 -- Symbol name
-names =
+local names =
 {
 	en = "Lamp",
 	cs = "Světelný zdroj"
 }
 
 -- Render area in base units (X1, Y1, X2, Y2)
-area = {-2, -1, 2, 1}
+local area = {-2, -1, 2, 1}
 
 -- Terminals
-terminals = {{-2, 0}, {2, 0}}
+local terminals = {{-2, 0}, {2, 0}}
 
 -- Rendering
-render = function (cr)
+local render = function (cr)
 	-- The circle
 	cr.save ()
 
diff --git a/share/library/Misc/power-source.lua b/share/library/Misc/power-source.lua
index 8fd98bb..00a8498 100644
--- a/share/library/Misc/power-source.lua
+++ b/share/library/Misc/power-source.lua
@@ -1,18 +1,18 @@
 -- Symbol name
-names =
+local names =
 {
 	en = "Power source",
 	cs = "Zdroj napětí"
 }
 
 -- Render area in base units (X1, Y1, X2, Y2)
-area = {-1, -2, 1, 2}
+local area = {-1, -2, 1, 2}
 
 -- Terminals
-terminals = {{-1, 0}, {1, 0}}
+local terminals = {{-1, 0}, {1, 0}}
 
 -- Rendering
-render = function (cr)
+local render = function (cr)
 	-- The vertical lines
 	cr.move_to (-0.2, -1)
 	cr.line_to (-0.2, 1)
diff --git a/share/library/Misc/switch.lua b/share/library/Misc/switch.lua
index 9d59fdf..c4d031e 100644
--- a/share/library/Misc/switch.lua
+++ b/share/library/Misc/switch.lua
@@ -1,18 +1,18 @@
 -- Symbol name
-names =
+local names =
 {
 	en = "Switch",
 	cs = "Spínač"
 }
 
 -- Render area in base units (X1, Y1, X2, Y2)
-area = {-2, -1.5, 2, 0}
+local area = {-2, -1.5, 2, 0}
 
 -- Terminals
-terminals = {{-2, 0}, {2, 0}}
+local terminals = {{-2, 0}, {2, 0}}
 
 -- Rendering
-render_normal = function (cr)
+local render_normal = function (cr)
 	-- The switch contact
 	cr.move_to (1.3, -1.3)
 	cr.line_to (-1, 0)
-- 
cgit v1.2.3-70-g09d2