first whitespace of a line is now skipped when processing arguments
parent
19401f1f47
commit
b387dee9c6
|
@ -103,6 +103,9 @@ void _parse_value(FILE* file, char* out, int* _argc, char** argv) {
|
||||||
switch(c) {
|
switch(c) {
|
||||||
case '#':
|
case '#':
|
||||||
freadto(file, '\n');
|
freadto(file, '\n');
|
||||||
|
// fall through
|
||||||
|
case '\n':
|
||||||
|
ungetc(nextnw(file), file);
|
||||||
break;
|
break;
|
||||||
case ';':
|
case ';':
|
||||||
*out = '\0';
|
*out = '\0';
|
||||||
|
|
Loading…
Reference in New Issue