Re-enable single line parameter lists, separated by commas

This commit is contained in:
Holger Vogt 2023-03-18 10:05:17 +01:00
parent f34ff7e63c
commit 7af6c4a661
1 changed files with 2 additions and 0 deletions

View File

@ -5096,6 +5096,8 @@ static int inp_split_multi_param_lines(struct card *card, int line_num)
end_param++;
if (*end_param == '"')
end_param++;
} else if (*end_param == ',' && paren_depth == 0) {
break;
} else {
while (*end_param != '\0' && *end_param != '"' &&
(!isspace_c(*end_param) ||