config: Allow tabs before = to facilitate alignment

master
nabijaczleweli 2 years ago committed by Raheman Vaiya
parent 497318ee9d
commit ccd17adffc
  1. 3
      src/ini.c

@ -41,11 +41,12 @@ void parse_kvp(char *s, char **key, char **value)
else
*c = 0;
while (*++c == ' ');
while (*++c == ' ' || *c == '\t');
*value = c;
return;
case ' ':
case '\t':
if (!last_space)
last_space = c;
break;

Loading…
Cancel
Save