mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +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
|
|
@ -99,7 +99,8 @@ static GSList *get_sorted_windows_config(CONFIG_NODE *node)
|
|||
GSList *tmp, *output;
|
||||
|
||||
output = NULL;
|
||||
for (tmp = node->value; tmp != NULL; tmp = tmp->next) {
|
||||
tmp = config_node_first(node->value);
|
||||
for (; tmp != NULL; tmp = config_node_next(tmp)) {
|
||||
output = g_slist_insert_sorted(output, tmp->data,
|
||||
(GCompareFunc) window_node_cmp);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue