Trailing whitespace makes the code inconsistent and create dull
changes in revision history (git). Clean it up once and for all.
Trailing whitespace trimmed with the following script:
for i in `find -iname "*.lua"`;
do
echo $i
sed -i 's/[ \t]*$//' "$i"
done;