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
|
|
@ -173,12 +173,12 @@ static void show_aliases(const char *alias)
|
|||
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_ALIASLIST_HEADER);
|
||||
|
||||
node = iconfig_node_traverse("aliases", FALSE);
|
||||
tmp = node == NULL ? NULL : node->value;
|
||||
tmp = node == NULL ? NULL : config_node_first(node->value);
|
||||
|
||||
/* first get the list of aliases sorted */
|
||||
list = NULL;
|
||||
aliaslen = strlen(alias);
|
||||
for (; tmp != NULL; tmp = tmp->next) {
|
||||
for (; tmp != NULL; tmp = config_node_next(tmp)) {
|
||||
CONFIG_NODE *node = tmp->data;
|
||||
|
||||
if (node->type != NODE_TYPE_KEY)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue