1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

/RELOAD still didn't work right.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@502 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-21 23:46:24 +00:00 committed by cras
parent 8454f25561
commit edfbd51827

View File

@ -155,7 +155,8 @@ void key_unbind(const char *id, SIGNAL_FUNC func)
}
/* Configure new key */
void key_configure_add(const char *id, const char *key, const char *data)
static void key_configure_create(const char *id, const char *key,
const char *data)
{
KEYINFO_REC *info;
KEY_REC *rec;
@ -175,8 +176,16 @@ void key_configure_add(const char *id, const char *key, const char *data)
rec->data = g_strdup(data);
info->keys = g_slist_append(info->keys, rec);
g_hash_table_insert(keys, rec->key, rec);
}
keyconfig_save(id, key, data);
/* Configure new key */
void key_configure_add(const char *id, const char *key, const char *data)
{
g_return_if_fail(id != NULL);
g_return_if_fail(key != NULL && *key != '\0');
key_configure_create(id, key, data);
keyconfig_save(id, key, data);
}
static void key_configure_destroy(KEY_REC *rec)
@ -245,7 +254,7 @@ void read_keyinfo(KEYINFO_REC *info, CONFIG_NODE *node)
node = tmp->data;
if (node->key != NULL)
key_configure_add(info->id, node->key, node->value);
key_configure_create(info->id, node->key, node->value);
}
}