diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-01-04 23:13:33 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-01-04 23:13:33 +0100 |
commit | 23273bf47a94c759d36584dad7053f0867556869 (patch) | |
tree | d444d0cf2f666cf04e6d9b266b2f37aca342da4a /src/plugins/aspell/aspell.c | |
parent | fd7b2f4fabc9be200588328bf07a790c7d84c164 (diff) | |
download | weechat-23273bf47a94c759d36584dad7053f0867556869.zip |
Added macros for name/description/author/version/license of plugins
Diffstat (limited to 'src/plugins/aspell/aspell.c')
-rw-r--r-- | src/plugins/aspell/aspell.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/aspell/aspell.c b/src/plugins/aspell/aspell.c index 78b19fa54..2fa7ba0e6 100644 --- a/src/plugins/aspell/aspell.c +++ b/src/plugins/aspell/aspell.c @@ -27,9 +27,12 @@ #include "../weechat-plugin.h" #include "aspell.h" -char plugin_name[] = "aspell"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Aspell plugin for WeeChat"; + +WEECHAT_PLUGIN_NAME("aspell"); +WEECHAT_PLUGIN_DESCRIPTION("Aspell plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_LICENSE("GPL"); struct t_weechat_plugin *weechat_aspell_plugin = NULL; #define weechat_plugin weechat_aspell_plugin |