mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
'=' isn't really necessary, warn if it's missing but don't fail without
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1185 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
3f113f51b9
commit
c741abe23f
1 changed files with 1 additions and 6 deletions
|
|
@ -151,12 +151,7 @@ static GTokenType config_parse_symbol(CONFIG_REC *rec, CONFIG_NODE *node)
|
|||
(rec->scanner->token == G_TOKEN_STRING)) {
|
||||
key = g_strdup(rec->scanner->value.v_string);
|
||||
|
||||
config_parse_get_token(rec->scanner, node);
|
||||
if (rec->scanner->token != '=') {
|
||||
g_free(key);
|
||||
return (GTokenType) '=';
|
||||
}
|
||||
|
||||
config_parse_warn_missing(rec, node, '=', TRUE);
|
||||
config_parse_get_token(rec->scanner, node);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue