split_shell: remove unused argument

This commit is contained in:
Starbeamrainbowlabs 2024-10-11 03:12:14 +01:00
parent 9761fec6e7
commit 270cbd5aae
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2

@ -15,7 +15,7 @@ local function is_whitespace(char)
return char:match("%s")
end
local function split_shell(text, autotrim)
local function split_shell(text)
local text_length = #text
local scan_pos = 1
local result = { }