mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Don't add space after tab-completed nicks.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2090 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
04bb4bbf39
commit
381c823e1a
@ -553,7 +553,8 @@ static void complete_window_nicks(GList **list, WINDOW_REC *window,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void sig_complete_word(GList **list, WINDOW_REC *window,
|
static void sig_complete_word(GList **list, WINDOW_REC *window,
|
||||||
const char *word, const char *linestart)
|
const char *word, const char *linestart,
|
||||||
|
int *want_space)
|
||||||
{
|
{
|
||||||
SERVER_REC *server;
|
SERVER_REC *server;
|
||||||
CHANNEL_REC *channel;
|
CHANNEL_REC *channel;
|
||||||
@ -601,6 +602,7 @@ static void sig_complete_word(GList **list, WINDOW_REC *window,
|
|||||||
/* nick completion .. we could also be completing a nick
|
/* nick completion .. we could also be completing a nick
|
||||||
after /MSG from nicks in channel */
|
after /MSG from nicks in channel */
|
||||||
complete_window_nicks(list, window, word, linestart);
|
complete_window_nicks(list, window, word, linestart);
|
||||||
|
if (list != NULL) *want_space = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*list != NULL) signal_stop();
|
if (*list != NULL) signal_stop();
|
||||||
|
Loading…
Reference in New Issue
Block a user