about summary refs log tree commit diff stats
path: root/file.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2024-12-03 22:49:12 -0800
committerKartik K. Agaram <vc@akkartik.com>2024-12-03 22:49:12 -0800
commit72eb8397cbbadd3dd2302c0f5e9fc1e6ec9cafe2 (patch)
treeae434f6a6b214739a98f46304aec57b35756e822 /file.lua
parent690ca0c34a1c05ee5c3d300559aed1244b5d9c8e (diff)
downloadtext.love-72eb8397cbbadd3dd2302c0f5e9fc1e6ec9cafe2.tar.gz
drop an unused variable
Diffstat (limited to 'file.lua')
-rw-r--r--file.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.lua b/file.lua
index f7f832b..028ffb4 100644
--- a/file.lua
+++ b/file.lua
@@ -47,7 +47,7 @@ end
 function load_array(a)
   local result = {}
   local next_line = ipairs(a)
-  local i,line,drawing = 0, ''
+  local i,line = 0, ''
   while true do
     i,line = next_line(a, i)
     if i == nil then break end