1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

signal_add_first("setup changed", .. so if some other "setup changed"

handler wants to ask $Z it works properly. This fix is kind of a kludge,
some better way should be found to fix these kind of problems (just
g_strdup() them?)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1389 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-03-15 03:01:04 +00:00 committed by cras
parent 99e7b28eef
commit 69469fe1c8

View File

@ -544,7 +544,7 @@ void expandos_init(void)
signal_add("message public", (SIGNAL_FUNC) sig_message_public);
signal_add("message private", (SIGNAL_FUNC) sig_message_private);
signal_add("message own_private", (SIGNAL_FUNC) sig_message_own_private);
signal_add("setup changed", (SIGNAL_FUNC) read_settings);
signal_add_first("setup changed", (SIGNAL_FUNC) read_settings);
}
void expandos_deinit(void)