mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 00:28:20 +00:00
[common] option: prevent ascii filter from eating newlines
This commit is contained in:
parent
44bff58aa8
commit
21d86dd31d
@ -397,10 +397,6 @@ bool option_load(const char * filename)
|
||||
continue;
|
||||
comment = false;
|
||||
|
||||
// ignore non-typeable ascii characters
|
||||
if (c < 32 || c > 126)
|
||||
continue;
|
||||
|
||||
switch(c)
|
||||
{
|
||||
case '[':
|
||||
@ -508,6 +504,10 @@ bool option_load(const char * filename)
|
||||
// fallthrough
|
||||
|
||||
default:
|
||||
// ignore non-typeable ascii characters
|
||||
if (c < 32 || c > 126)
|
||||
continue;
|
||||
|
||||
if (expectLine)
|
||||
{
|
||||
DEBUG_ERROR("Syntax error on line %d, expected new line", lineno);
|
||||
|
Loading…
Reference in New Issue
Block a user