1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

completion_msg() is now public

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3019 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-11-21 18:24:51 +00:00 committed by cras
parent dc8bd638e3
commit 7c7afe9f54
2 changed files with 3 additions and 1 deletions

View File

@ -299,7 +299,7 @@ static GList *convert_msglist(GSList *msglist)
}
/* Complete /MSG - if `find_server' is NULL, complete nicks from all servers */
static GList *completion_msg(SERVER_REC *win_server,
GList *completion_msg(SERVER_REC *win_server,
SERVER_REC *find_server,
const char *nick, const char *prefix)
{

View File

@ -6,6 +6,8 @@ GList *completion_get_servers(const char *word);
GList *completion_get_servertags(const char *word);
GList *completion_get_channels(SERVER_REC *server, const char *word);
GList *completion_get_aliases(const char *word);
GList *completion_msg(SERVER_REC *win_server, SERVER_REC *find_server,
const char *nick, const char *prefix);
void completion_last_message_add(const char *nick);
void completion_last_message_remove(const char *nick);