diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-02 20:50:35 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-02 20:50:35 +0200 |
commit | 68a3aca643733713427dbd7686bb49206a21b943 (patch) | |
tree | c7fa80fd9a7fb2401ccaf557f093d0b72185d3d8 /src/plugins/javascript | |
parent | 6fe354439ced7b110a7aae43784924ba264d2aa8 (diff) | |
download | weechat-68a3aca643733713427dbd7686bb49206a21b943.zip |
plugins: use a different plugin priority for each scripting language
Diffstat (limited to 'src/plugins/javascript')
-rw-r--r-- | src/plugins/javascript/weechat-js.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/javascript/weechat-js.cpp b/src/plugins/javascript/weechat-js.cpp index 5dec4f171..8ce2dd7e3 100644 --- a/src/plugins/javascript/weechat-js.cpp +++ b/src/plugins/javascript/weechat-js.cpp @@ -39,7 +39,7 @@ WEECHAT_PLUGIN_DESCRIPTION("Support of javascript scripts"); WEECHAT_PLUGIN_AUTHOR("Koka El Kiwi <kokakiwi@kokakiwi.net>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(4000); +WEECHAT_PLUGIN_PRIORITY(4006); struct t_weechat_plugin *weechat_js_plugin = NULL; |