1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 18:39:03 +00:00

Removed some locals that are no longer being used in nse_main.lua.

This commit is contained in:
batrick
2009-05-13 05:48:57 +00:00
parent 38c850e8db
commit 4c7e2ee53e

View File

@@ -32,13 +32,11 @@ local _G = _G;
local assert = assert;
local collectgarbage = collectgarbage;
local error = error;
local getfenv = getfenv;
local ipairs = ipairs;
local loadfile = loadfile;
local loadstring = loadstring;
local next = next;
local pairs = pairs;
local pcall = pcall;
local rawget = rawget;
local select = select;
local setfenv = setfenv;
@@ -50,14 +48,11 @@ local unpack = unpack;
local create = coroutine.create;
local resume = coroutine.resume;
local running = coroutine.running;
local status = coroutine.status;
local yield = coroutine.yield;
local traceback = debug.traceback;
local write = io.write;
local byte = string.byte;
local format = string.format;
local find = string.find;