summaryrefslogtreecommitdiff
path: root/src/plugins/aspell/aspell.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-01-04 23:13:33 +0100
committerSebastien Helleu <flashcode@flashtux.org>2008-01-04 23:13:33 +0100
commit23273bf47a94c759d36584dad7053f0867556869 (patch)
treed444d0cf2f666cf04e6d9b266b2f37aca342da4a /src/plugins/aspell/aspell.c
parentfd7b2f4fabc9be200588328bf07a790c7d84c164 (diff)
downloadweechat-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.c9
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