diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-07-27 07:51:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 07:51:36 +0200 |
commit | a14973816b5a026bf8e2a51f10eb4db6b5d5b957 (patch) | |
tree | 2aa8a147d94ca8ec059b0cf015eabfbb51a6e458 /src | |
parent | 7d7ca34a41d1f031a8e1e189f33e202bf6183803 (diff) | |
parent | b934e874d0d748e325f42d5812510249966776c9 (diff) | |
download | weechat-a14973816b5a026bf8e2a51f10eb4db6b5d5b957.zip |
Merge pull request #1225 from weechatter/partial_completion
gui: fix uncleared completion item (#1162)
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui-completion.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/gui-completion.c b/src/gui/gui-completion.c index 99248f70d..24917f6b3 100644 --- a/src/gui/gui-completion.c +++ b/src/gui/gui-completion.c @@ -1199,6 +1199,8 @@ gui_completion_complete (struct t_gui_completion *completion) } arraylist_clear (completion->partial_list); + (void) hook_signal_send ("partial_completion", + WEECHAT_HOOK_SIGNAL_STRING, NULL); return; } |