1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 03:46:39 +02:00

scripts: fix return code of function bar_set in python/perl/ruby/lua/tcl/guile plugins

This commit is contained in:
Sébastien Helleu
2015-03-01 09:57:35 +01:00
parent 72b8674193
commit 5e886961bd
7 changed files with 35 additions and 33 deletions
+5 -6
View File
@@ -4006,19 +4006,18 @@ API_FUNC(bar_new)
API_FUNC(bar_set)
{
char *bar, *property, *value;
int rc;
API_INIT_FUNC(1, "bar_set", API_RETURN_ERROR);
API_INIT_FUNC(1, "bar_set", API_RETURN_INT(0));
bar = NULL;
property = NULL;
value = NULL;
if (!PyArg_ParseTuple (args, "sss", &bar, &property, &value))
API_WRONG_ARGS(API_RETURN_ERROR);
API_WRONG_ARGS(API_RETURN_INT(0));
weechat_bar_set (API_STR2PTR(bar),
property,
value);
rc = weechat_bar_set (API_STR2PTR(bar), property, value);
API_RETURN_OK;
API_RETURN_INT(rc);
}
API_FUNC(bar_update)