diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-03 20:20:21 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-03 20:20:21 +0100 |
commit | 7526776f4eae49dd061665fd29688df9cba60906 (patch) | |
tree | f2ef6ce26ef1113fc13c22a6d0ac52180d29150c /src/plugins/perl | |
parent | 958f39cb956fda0d3154e28f61d1764b5d9ccd10 (diff) | |
download | weechat-7526776f4eae49dd061665fd29688df9cba60906.zip |
plugins: change priority of scripting plugins
Use a step of 10 between each scripting plugin priority.
Diffstat (limited to 'src/plugins/perl')
-rw-r--r-- | src/plugins/perl/weechat-perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/perl/weechat-perl.c b/src/plugins/perl/weechat-perl.c index c1771a73f..df3cbfe68 100644 --- a/src/plugins/perl/weechat-perl.c +++ b/src/plugins/perl/weechat-perl.c @@ -37,7 +37,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("Support of perl scripts")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(4004); +WEECHAT_PLUGIN_PRIORITY(4040); struct t_weechat_plugin *weechat_perl_plugin = NULL; |