Skip to content

Commit

Permalink
Correct splitting of options string
Browse files Browse the repository at this point in the history
Came up in l3build, but applies here too.
  • Loading branch information
josephwright committed Jun 28, 2024
1 parent 91572e2 commit b88e0dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l3sys-query.lua
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ local function parse_args()
options[optname] = optarg
else
local opts = options[optname] or {}
for hit in gmatch(optarg,"([^,%s]+)") do
for hit in gmatch(optarg,"([^,]+)") do
insert(opts,hit)
end
options[optname] = opts
Expand Down

0 comments on commit b88e0dd

Please sign in to comment.