Fix luajit integration after rebase
This commit is contained in:
parent
7ad4ec36ce
commit
3853bf73d7
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +1,6 @@
|
|||
function table.pack(...)
|
||||
return {n=select('#',...), ...}
|
||||
end
|
||||
|
||||
table.unpack = unpack
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
option('portable', type : 'boolean', value : false, description: 'Portable install')
|
||||
option('luajit', type : 'boolean', value : true, description: 'Use luajit')
|
||||
|
||||
|
|
Loading…
Reference in New Issue