summaryrefslogtreecommitdiff
path: root/src/plugins/python/weechat-python-api.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-05-10 08:26:56 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-05-10 08:26:56 +0200
commitcdab55aa0552356173815cfc79a7b9ddc0a435ed (patch)
tree9b833e42e2552477b60520259a12c4ba06fa42b3 /src/plugins/python/weechat-python-api.c
parent6d205222aa80d623b8f0f13514bd7046eea42f00 (diff)
downloadweechat-cdab55aa0552356173815cfc79a7b9ddc0a435ed.zip
api: change type of arguments displayed/highlight in hook_print callback from string to integer (in scripts)
Diffstat (limited to 'src/plugins/python/weechat-python-api.c')
-rw-r--r--src/plugins/python/weechat-python-api.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/plugins/python/weechat-python-api.c b/src/plugins/python/weechat-python-api.c
index ee0dfa4be..c79196ad5 100644
--- a/src/plugins/python/weechat-python-api.c
+++ b/src/plugins/python/weechat-python-api.c
@@ -2438,15 +2438,15 @@ weechat_python_api_hook_print_cb (void *data, struct t_gui_buffer *buffer,
func_argv[3] = weechat_string_build_with_split_string (tags, ",");
if (!func_argv[3])
func_argv[3] = strdup ("");
- func_argv[4] = (displayed) ? strdup ("1") : strdup ("0");
- func_argv[5] = (highlight) ? strdup ("1") : strdup ("0");
+ func_argv[4] = PyLong_FromLong((long)displayed);
+ func_argv[5] = PyLong_FromLong((long)highlight);
func_argv[6] = (prefix) ? (char *)prefix : empty_arg;
func_argv[7] = (message) ? (char *)message : empty_arg;
rc = (int *) weechat_python_exec (script_callback->script,
WEECHAT_SCRIPT_EXEC_INT,
script_callback->function,
- "ssssssss", func_argv);
+ "ssssOOss", func_argv);
if (!rc)
ret = WEECHAT_RC_ERROR;
@@ -2460,9 +2460,13 @@ weechat_python_api_hook_print_cb (void *data, struct t_gui_buffer *buffer,
if (func_argv[3])
free (func_argv[3]);
if (func_argv[4])
- free (func_argv[4]);
+ {
+ Py_XDECREF((PyObject *)func_argv[4]);
+ }
if (func_argv[5])
- free (func_argv[5]);
+ {
+ Py_XDECREF((PyObject *)func_argv[5]);
+ }
return ret;
}