diff options
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 6 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 7 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 6 | ||||
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.adoc | 6 |
4 files changed, 5 insertions, 20 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index c55080a33..5584571d2 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -8104,17 +8104,13 @@ Arguments: ** _const char *command_: the command executed, with its arguments ** return value: *** _WEECHAT_RC_OK_ -*** _WEECHAT_RC_OK_EAT_ +*** _WEECHAT_RC_OK_EAT_: command will not be executed by WeeChat after callback *** _WEECHAT_RC_ERROR_ * _callback_pointer_: pointer given to callback when it is called by WeeChat * _callback_data_: pointer given to callback when it is called by WeeChat; if not NULL, it must have been allocated with malloc (or similar function) and it is automatically freed when the hook is deleted -[NOTE] -Callback can return _WEECHAT_RC_OK_ or _WEECHAT_RC_OK_EAT_ (command will not -be executed by WeeChat after callback). - Return value: * pointer to new hook, NULL if error occurred diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index d0c69f5b6..2725b6032 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -8242,7 +8242,8 @@ Paramètres : ** _const char *command_ : la commande exécutée, avec ses paramètres ** valeur de retour : *** _WEECHAT_RC_OK_ -*** _WEECHAT_RC_OK_EAT_ +*** _WEECHAT_RC_OK_EAT_ : la commande ne sera pas exécutée par WeeChat après + la fonction de rappel *** _WEECHAT_RC_ERROR_ * _callback_pointer_ : pointeur donné à la fonction de rappel lorsqu'elle est appelée par WeeChat @@ -8251,10 +8252,6 @@ Paramètres : fonction similaire) et est automatiquement libéré (par free) lorsque le "hook" est supprimé -[NOTE] -La fonction de rappel peut retourner _WEECHAT_RC_OK_ ou _WEECHAT_RC_OK_EAT_ (la -commande ne sera pas exécutée par WeeChat après la fonction de rappel). - Valeur de retour : * pointeur vers le nouveau "hook", NULL en cas d'erreur diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index c5925b012..65def0b48 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -8329,7 +8329,7 @@ Argomenti: ** _const char *command_: il comando eseguito, con i propri argomenti ** valore restituito: *** _WEECHAT_RC_OK_ -*** _WEECHAT_RC_OK_EAT_ +*** _WEECHAT_RC_OK_EAT_: il comando non verrà eseguito da WeeChat dopo la callback *** _WEECHAT_RC_ERROR_ * _callback_pointer_: puntatore fornito alla callback quando chiamata da WeeChat // TRANSLATION MISSING @@ -8337,10 +8337,6 @@ Argomenti: if not NULL, it must have been allocated with malloc (or similar function) and it is automatically freed when the hook is deleted -[NOTE] -La callback può restituire _WEECHAT_RC_OK_ o _WEECHAT_RC_OK_EAT_ (il comando -non verrà eseguito da WeeChat dopo la callback). - Valore restituito: * puntatore al nuovo hook, NULL in caso di errore diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 7cd98f196..a52c3832c 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -8108,17 +8108,13 @@ struct t_hook *weechat_hook_command_run (const char *command, ** _const char *command_: 実行するコマンド、引数付き ** 戻り値: *** _WEECHAT_RC_OK_ -*** _WEECHAT_RC_OK_EAT_ +*** _WEECHAT_RC_OK_EAT_: コールバックの後にコマンドを実行しない *** _WEECHAT_RC_ERROR_ * _callback_pointer_: WeeChat が _callback_ コールバックを呼び出す際にコールバックに渡すポインタ * _callback_data_: WeeChat が _callback_ コールバックを呼び出す際にコールバックに渡すポインタ; このポインタが NULL でない場合、このポインタは malloc (または類似の関数) によって割り当てられたものでなければいけません。さらに、このポインタはここで作成したフックが削除された時点で自動的に開放されます -[NOTE] -コールバックは _WEECHAT_RC_OK_ または _WEECHAT_RC_OK_EAT_ -(コールバックの後にコマンドを実行しない) を返すことができます。 - 戻り値: * 新しいフックへのポインタ、エラーが起きた場合は NULL |