summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElie Roux <elie.roux@telecom-bretagne.eu>2009-04-17 11:59:17 +0200
committerElie Roux <elie.roux@telecom-bretagne.eu>2009-04-17 11:59:17 +0200
commitafd409d2f11d2bdc38f779ac777de3b434c41a72 (patch)
tree8d285c37983f9a83b64c15f4c48f5128d2d2ed37
parent17ff8d11d679d6e241537d8ad3cdf35e4fc21589 (diff)
downloadlualibs-afd409d2f11d2bdc38f779ac777de3b434c41a72.tar.gz
fixing a wrong variable name
-rw-r--r--luaextra.dtx25
1 files changed, 13 insertions, 12 deletions
diff --git a/luaextra.dtx b/luaextra.dtx
index 7a55d76..370e956 100644
--- a/luaextra.dtx
+++ b/luaextra.dtx
@@ -144,18 +144,19 @@ and the derived file luaextra.lua.
% \fi
%
% \begin{macrocode}
-local module = {
- name = "luaextra",
- version = 0.91,
- date = "2009/04/15",
- description = "Lua additional functions.",
- author = "Hans Hagen, PRAGMA-ADE, Hasselt NL & Elie Roux",
- copyright = "PRAGMA ADE / ConTeXt Development Team",
- license = "See ConTeXt's mreadme.pdf for the license",
-}
-
-luatextra.provides_module(module)
-
+do
+ local luatextra_module = {
+ name = "luaextra",
+ version = 0.91,
+ date = "2009/04/15",
+ description = "Lua additional functions.",
+ author = "Hans Hagen, PRAGMA-ADE, Hasselt NL & Elie Roux",
+ copyright = "PRAGMA ADE / ConTeXt Development Team",
+ license = "See ConTeXt's mreadme.pdf for the license",
+ }
+
+ luatextra.provides_module(luatextra_module)
+end
% \end{macrocode}
%
% \begin{macro}{string:stripspaces}