diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-24 09:25:04 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-24 09:25:04 +0100 |
commit | 17d20b9ca65d34fa014a1b97aa7afd75f6a04183 (patch) | |
tree | 2edb4a937cd51192c95719316b4268ccebf17f5a /doc/ja | |
parent | 5244a707cb8bdfc7b19a1505938d5d79b44aef66 (diff) | |
download | weechat-17d20b9ca65d34fa014a1b97aa7afd75f6a04183.zip |
doc: add argument "subplugin" in function unhook_all (plugin API reference)
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.asciidoc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc index c6ac3c9df..51be29960 100644 --- a/doc/ja/weechat_plugin_api.ja.asciidoc +++ b/doc/ja/weechat_plugin_api.ja.asciidoc @@ -10407,14 +10407,20 @@ weechat.unhook(my_hook) [source,C] ---- -void weechat_unhook_all (); +void weechat_unhook_all (const char *subplugin); ---- +引数: + +// TRANSLATION MISSING +* 'subplugin': if not NULL, unhook only hooks with this "subplugin" set + (this argument is not available in scripting API) + C 言語での使用例: [source,C] ---- -weechat_unhook_all (); +weechat_unhook_all (NULL); ---- スクリプト (Python) での使用例: |