diff options
author | Elie Roux <elie.roux@telecom-bretagne.eu> | 2013-05-05 06:53:32 -0700 |
---|---|---|
committer | Elie Roux <elie.roux@telecom-bretagne.eu> | 2013-05-05 06:53:32 -0700 |
commit | 4aceaacf168b1073cf4dff02bcae0b66d2fd0caf (patch) | |
tree | 48a18f6c23d470c7f6a0f0d36701c5be69dadf3b | |
parent | 32040496caa1dab0ce1bfd4da023ac5bb325efdb (diff) | |
parent | b7f3f777b1c825e4b4e0c8d6ec5592090078f36b (diff) | |
download | luatexbase-4aceaacf168b1073cf4dff02bcae0b66d2fd0caf.tar.gz |
Merge pull request #7 from phi-gamma/master
fix fastcopy()
-rw-r--r-- | luatexbase-modutils.dtx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/luatexbase-modutils.dtx b/luatexbase-modutils.dtx index 1a50f24..84c893c 100644 --- a/luatexbase-modutils.dtx +++ b/luatexbase-modutils.dtx @@ -601,7 +601,8 @@ luatexbase.provides_module = provides_module % A simple table copy function. % % \begin{macrocode} -local fastcopy = table.fastcopy or function(old) +local fastcopy +fastcopy = table.fastcopy or function(old) if old then local new = { } for k,v in next, old do |