mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Merge branch 'master' of github.com:irssi/irssi
This commit is contained in:
commit
0ca534c345
3
.gitattributes
vendored
Normal file
3
.gitattributes
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# On Windows, some Git clients may normalize all text files' line-endings to
|
||||
# CRLF, which causes obscure errors when running shell scripts.
|
||||
*.sh eol=lf
|
@ -217,6 +217,11 @@ char *word_complete(WINDOW_REC *window, const char *line, int *pos, int erase, i
|
||||
want_space = TRUE;
|
||||
signal_emit("complete word", 5, &complist, window, word, linestart, &want_space);
|
||||
last_want_space = want_space;
|
||||
|
||||
if (complist != NULL) {
|
||||
/* Remove all nulls (from the signal) before doing further processing */
|
||||
complist = g_list_remove_all(g_list_first(complist), NULL);
|
||||
}
|
||||
}
|
||||
|
||||
g_free(linestart);
|
||||
|
Loading…
x
Reference in New Issue
Block a user