Browse Source

Re-enable single line parameter lists, separated by commas

pre-master-46
Holger Vogt 3 years ago
parent
commit
7af6c4a661
  1. 2
      src/frontend/inpcom.c

2
src/frontend/inpcom.c

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

Loading…
Cancel
Save