1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-27 05:20:20 -04:00

That msg completion nick thing broke some other completions in msgs window,

like /SET.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2434 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-02-13 10:09:05 +00:00 committed by cras
parent 0bb2b6a9d4
commit 0da21a5f59

View File

@ -606,7 +606,7 @@ static void sig_complete_word(GList **list, WINDOW_REC *window,
complete_window_nicks(list, window, word, linestart);
} else if (window->level & MSGLEVEL_MSGS) {
/* msgs window, complete /MSG nicks */
*list = completion_msg(server, NULL, word, NULL);
*list = g_list_concat(completion_msg(server, NULL, word, NULL), *list);
}
if (*list != NULL) signal_stop();