diff options
Diffstat (limited to 'src/plugins/aspell')
-rw-r--r-- | src/plugins/aspell/aspell.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/aspell/aspell.c b/src/plugins/aspell/aspell.c index 2fa7ba0e6..4d0c22b79 100644 --- a/src/plugins/aspell/aspell.c +++ b/src/plugins/aspell/aspell.c @@ -18,6 +18,7 @@ /* aspell.c: Aspell plugin support for WeeChat */ + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -31,7 +32,8 @@ WEECHAT_PLUGIN_NAME("aspell"); WEECHAT_PLUGIN_DESCRIPTION("Aspell plugin for WeeChat"); WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); -WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); +WEECHAT_PLUGIN_WEECHAT_VERSION(WEECHAT_VERSION); WEECHAT_LICENSE("GPL"); struct t_weechat_plugin *weechat_aspell_plugin = NULL; |