mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 21:00:40 +02:00
Comments are now allowed everywhere in config files.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2374 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
85b63bf546
commit
0ce3f8243e
14 changed files with 45 additions and 52 deletions
|
|
@ -114,7 +114,8 @@ static CONFIG_NODE *key_config_find(const char *key)
|
|||
/* remove old keyboard settings */
|
||||
node = iconfig_node_traverse("(keyboard", TRUE);
|
||||
|
||||
for (tmp = node->value; tmp != NULL; tmp = tmp->next) {
|
||||
tmp = config_node_first(node->value);
|
||||
for (; tmp != NULL; tmp = config_node_next(tmp)) {
|
||||
node = tmp->data;
|
||||
|
||||
if (strcmp(config_node_get_str(node, "key", ""), key) == 0)
|
||||
|
|
@ -794,7 +795,8 @@ static void read_keyboard_config(void)
|
|||
return;
|
||||
}
|
||||
|
||||
for (tmp = node->value; tmp != NULL; tmp = tmp->next)
|
||||
tmp = config_node_first(node->value);
|
||||
for (; tmp != NULL; tmp = config_node_next(tmp))
|
||||
key_config_read(tmp->data);
|
||||
|
||||
key_configure_thaw();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue