summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2020-12-18 20:28:41 +0100
committerSébastien Helleu <flashcode@flashtux.org>2020-12-18 20:28:41 +0100
commite4152c3535c7d21f672581733bde7e594d3348b4 (patch)
treeb4ac651b30fa5e509df22353506530e7eb140487
parentcore: add option "recreate" in command /filter (diff)
downloadweechat-e4152c3535c7d21f672581733bde7e594d3348b4.tar.xz
weechat-e4152c3535c7d21f672581733bde7e594d3348b4.zip
core: remove unneeded return of WEECHAT_RC_OK in filter command
-rw-r--r--src/core/wee-command.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index d567ea180..3798979da 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -2465,7 +2465,6 @@ COMMAND_CALLBACK(filter)
_("%sFilter \"%s\" not found"),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
argv[2]);
- return WEECHAT_RC_OK;
}
return WEECHAT_RC_OK;
}
@@ -2490,7 +2489,6 @@ COMMAND_CALLBACK(filter)
"\"%s\" to \"%s\""),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
argv[2], argv[3]);
- return WEECHAT_RC_OK;
}
}
else