diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2005-06-14 04:29:23 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2005-06-14 04:29:23 +0000 |
commit | 65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3 (patch) | |
tree | f6e3f1a31451281ac2a347c3080e9749456dac29 /etc | |
parent | 8b114f3bf4ccea3b065551fa94649a9e45935b5b (diff) | |
download | luasocket-65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3.tar.gz luasocket-65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3.tar.bz2 luasocket-65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3.zip |
Working on the manual.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/dict.lua | 2 | ||||
-rw-r--r-- | etc/lp.lua | 2 | ||||
-rw-r--r-- | etc/tftp.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/etc/dict.lua b/etc/dict.lua index a52b977..76b254a 100644 --- a/etc/dict.lua +++ b/etc/dict.lua | |||
@@ -8,7 +8,7 @@ | |||
8 | ----------------------------------------------------------------------------- | 8 | ----------------------------------------------------------------------------- |
9 | -- Load required modules | 9 | -- Load required modules |
10 | ----------------------------------------------------------------------------- | 10 | ----------------------------------------------------------------------------- |
11 | local base = require("base") | 11 | local base = _G |
12 | local string = require("string") | 12 | local string = require("string") |
13 | local table = require("table") | 13 | local table = require("table") |
14 | local socket = require("socket") | 14 | local socket = require("socket") |
@@ -10,7 +10,7 @@ | |||
10 | ]] | 10 | ]] |
11 | -- make sure LuaSocket is loaded | 11 | -- make sure LuaSocket is loaded |
12 | local io = require("io") | 12 | local io = require("io") |
13 | local base = require("base") | 13 | local base = _G |
14 | local string = require("string") | 14 | local string = require("string") |
15 | local socket = require("socket") | 15 | local socket = require("socket") |
16 | local ltn12 = require("ltn12") | 16 | local ltn12 = require("ltn12") |
diff --git a/etc/tftp.lua b/etc/tftp.lua index ba21a43..60658f7 100644 --- a/etc/tftp.lua +++ b/etc/tftp.lua | |||
@@ -8,7 +8,7 @@ | |||
8 | ----------------------------------------------------------------------------- | 8 | ----------------------------------------------------------------------------- |
9 | -- Load required files | 9 | -- Load required files |
10 | ----------------------------------------------------------------------------- | 10 | ----------------------------------------------------------------------------- |
11 | local base = require("base") | 11 | local base = _G |
12 | local table = require("table") | 12 | local table = require("table") |
13 | local math = require("math") | 13 | local math = require("math") |
14 | local string = require("string") | 14 | local string = require("string") |