TypesettingTools / Aegisub-Motion

Lua plugin for Aegisub auto4 that parses motion tracking data and applies it to selected subtitles.
Other
172 stars 23 forks source link

LineCollection: Fix unpack limit being hit for large inserts #30

Closed line0 closed 8 years ago

line0 commented 8 years ago

Trying to insert a large amount of lines at the end of an ASS script at once causes the maximum number of table items unpacked to arguments to be exceeded. This PR rectifies that issue by processing large inserts in chunks of at most 1000 lines. This is lower than the limit of 8000 items imposed by LuaJIT, but still fast enough to make it worthwhile to stay on the safe side wrt/ stack size.

torque commented 8 years ago

Looks good.