mirror of
https://github.com/weechat/weechat.git
synced 2026-06-24 11:56:38 +02:00
scripts: fix return code of function bar_set in python/perl/ruby/lua/tcl/guile plugins
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user