diff options
| author | jussi | 2024-04-13 18:44:42 +0300 |
|---|---|---|
| committer | jussi | 2024-04-13 18:44:42 +0300 |
| commit | 1d66edf4f2390c25485ef4205b20c184de1c2f5d (patch) | |
| tree | 7a3cd79e26d7b93a2fb4a3764171fbe90d22a9d4 /examples/resources/lib/utillib.lua | |
| parent | b96960a1f97f815a6872fedc422ea950ed477cda (diff) | |
| download | reilua-enhanced-1d66edf4f2390c25485ef4205b20c184de1c2f5d.tar.gz reilua-enhanced-1d66edf4f2390c25485ef4205b20c184de1c2f5d.tar.bz2 reilua-enhanced-1d66edf4f2390c25485ef4205b20c184de1c2f5d.zip | |
Position argument added for GetCodepoint, GetCodepointNext and GetCodepointPrevious.
Diffstat (limited to 'examples/resources/lib/utillib.lua')
| -rw-r--r-- | examples/resources/lib/utillib.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/resources/lib/utillib.lua b/examples/resources/lib/utillib.lua index 73bb11c..a661f60 100644 --- a/examples/resources/lib/utillib.lua +++ b/examples/resources/lib/utillib.lua @@ -7,7 +7,8 @@ end local utillib = {} -function utillib.tableClone( org ) +-- Does not work with dictionaries. +function utillib.arrayClone( org ) return { table.unpack( org ) } end |
