1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

scripts: remove double return in info eval callback functions not yet implemented

This commit is contained in:
Sébastien Helleu
2018-05-17 22:02:10 +02:00
parent f3a31f609a
commit 8b876bd668
3 changed files with 3 additions and 9 deletions
+1 -3
View File
@@ -767,11 +767,9 @@ weechat_js_info_eval_cb (const void *pointer, void *data,
(void) pointer;
(void) data;
(void) info_name;
(void) arguments;
return not_implemented;
return NULL;
return not_implemented;
}
/*
+1 -3
View File
@@ -1069,11 +1069,9 @@ weechat_php_info_eval_cb (const void *pointer, void *data,
(void) pointer;
(void) data;
(void) info_name;
(void) arguments;
return not_implemented;
return NULL;
return not_implemented;
}
/*
+1 -3
View File
@@ -771,11 +771,9 @@ weechat_tcl_info_eval_cb (const void *pointer, void *data,
(void) pointer;
(void) data;
(void) info_name;
(void) arguments;
return not_implemented;
return NULL;
return not_implemented;
}
/*