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) {
|
||||
case '#':
|
||||
freadto(file, '\n');
|
||||
// fall through
|
||||
case '\n':
|
||||
ungetc(nextnw(file), file);
|
||||
break;
|
||||
case ';':
|
||||
*out = '\0';
|
||||
|
|
Loading…
Reference in New Issue