Allow extra newlines before right brace in config

This commit is contained in:
Přemysl Eric Janouch 2015-05-01 20:59:09 +02:00
parent f5f3dd1a29
commit d4deb31a17
1 changed files with 1 additions and 0 deletions

View File

@ -1021,6 +1021,7 @@ config_parser_parse_value (struct config_parser *self, jmp_buf out)
if (ACCEPT (CONFIG_T_LBRACE))
{
result = config_parser_parse_object (self, out);
SKIP_NL ();
EXPECT (CONFIG_T_RBRACE);
return result;
}