Fix luajit integration after rebase

This commit is contained in:
Francesco Abbate 2021-03-21 20:24:39 +01:00
parent 7ad4ec36ce
commit 3853bf73d7
3 changed files with 6 additions and 1 deletions

View File

@ -8,7 +8,7 @@ end
function common.utf8_chars(text)
return text:gmatch("[\0-\x7f\xc2-\xf4][\x80-\xbf]*")
return text:gmatch("[\x01-\x7f\xc2-\xf4][\x80-\xbf]*")
end

View File

@ -1,2 +1,6 @@
function table.pack(...)
return {n=select('#',...), ...}
end
table.unpack = unpack

View File

@ -1,2 +1,3 @@
option('portable', type : 'boolean', value : false, description: 'Portable install')
option('luajit', type : 'boolean', value : true, description: 'Use luajit')