diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-13 10:09:05 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-13 10:09:05 +0000 |
commit | 0da21a5f59dc1a0d7fad538789dcbbf74134c1a3 (patch) | |
tree | b7ce13a1b03c037bfe8ecc7bcb09fa97815b3302 /src/fe-common | |
parent | 0bb2b6a9d4097ff075c0ca06aee70f26dd590590 (diff) | |
download | irssi-0da21a5f59dc1a0d7fad538789dcbbf74134c1a3.zip |
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
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/chat-completion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/chat-completion.c b/src/fe-common/core/chat-completion.c index 0d74acaf..1a16003c 100644 --- a/src/fe-common/core/chat-completion.c +++ b/src/fe-common/core/chat-completion.c @@ -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(); |