diff options
author | Elie Roux <elie.roux@telecom-bretagne.eu> | 2009-04-17 11:59:17 +0200 |
---|---|---|
committer | Elie Roux <elie.roux@telecom-bretagne.eu> | 2009-04-17 11:59:17 +0200 |
commit | afd409d2f11d2bdc38f779ac777de3b434c41a72 (patch) | |
tree | 8d285c37983f9a83b64c15f4c48f5128d2d2ed37 /luaextra.dtx | |
parent | 17ff8d11d679d6e241537d8ad3cdf35e4fc21589 (diff) | |
download | lualibs-afd409d2f11d2bdc38f779ac777de3b434c41a72.tar.gz |
fixing a wrong variable name
Diffstat (limited to 'luaextra.dtx')
-rw-r--r-- | luaextra.dtx | 25 |
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} |